.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f8f8;
}

.page-gdpr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-gdpr-hero {
    background-color: var(--primary-color, #0A2463);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.9), rgba(227, 181, 5, 0.7));
    z-index: 1;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 2;
}

.page-gdpr-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-gdpr-cta-button {
    display: inline-block;
    background-color: var(--secondary-color, #E3B505);
    color: var(--primary-color, #0A2463);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr-cta-button:hover {
    background-color: #d4a704; /* Slightly darker secondary color */
    transform: translateY(-3px);
    color: #ffffff; /* Contrast for hover */
}

.page-gdpr-section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-gdpr-section:last-of-type {
    border-bottom: none;
}

.page-gdpr-section-title {
    font-size: 2.5em;
    color: var(--primary-color, #0A2463);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr-principles .page-gdpr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-gdpr-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-gdpr-card-icon {
    width: 120px; /* Increased size as per new requirement */
    height: 120px; /* Increased size as per new requirement */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%; /* Make it round */
    background-color: rgba(227, 181, 5, 0.1); /* Light background for icons */
    padding: 15px;
}

.page-gdpr-card-title {
    font-size: 1.5em;
    color: var(--primary-color, #0A2463);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr-card p {
    font-size: 1em;
    color: #555555;
    text-align: left;
}

.page-gdpr-data-collection .page-gdpr-content-flex,
.page-gdpr-security .page-gdpr-content-flex,
.page-gdpr-rights .page-gdpr-content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-gdpr-rights .page-gdpr-reverse-flex {
    flex-direction: row-reverse;
}

.page-gdpr-text-content {
    flex: 1;
    min-width: 300px;
}

.page-gdpr-text-content h3 {
    font-size: 1.8em;
    color: var(--primary-color, #0A2463);
    margin-bottom: 20px;
}

.page-gdpr-text-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-gdpr-text-content li {
    margin-bottom: 10px;
    color: #444444;
}

.page-gdpr-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-gdpr-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px; /* Min size for all images */
    min-height: 200px; /* Min size for all images */
}

.page-gdpr-grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.page-gdpr-info-card {
    background-color: #ffffff;
    border-left: 5px solid var(--secondary-color, #E3B505);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    padding: 25px;
}

.page-gdpr-info-card-title {
    font-size: 1.4em;
    color: var(--primary-color, #0A2463);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr-info-card p {
    color: #555555;
}

.page-gdpr-contact-info p,
.page-gdpr-contact-info a {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #444444;
}

.page-gdpr-contact-info a {
    color: var(--primary-color, #0A2463);
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-contact-info a:hover {
    text-decoration: underline;
    color: var(--secondary-color, #E3B505);
}

.page-gdpr-text-bottom {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #666666;
}

/* FAQ styles */
.page-gdpr-faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fdfdfd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--primary-color, #0A2463);
    font-weight: bold;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color, #E3B505);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color, #0A2463);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 15px 25px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin: 0;
    color: #555555;
    font-size: 1em;
}

.faq-answer a {
    color: var(--primary-color, #0A2463);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr-title {
        font-size: 2.8em;
    }
    .page-gdpr-subtitle {
        font-size: 1.2em;
    }
    .page-gdpr-section-title {
        font-size: 2em;
    }
    .page-gdpr-grid,
    .page-gdpr-grid-2-col {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-gdpr-content-flex {
        flex-direction: column;
    }
    .page-gdpr-reverse-flex {
        flex-direction: column;
    }
    .page-gdpr-image-wrapper {
        order: -1; /* Move image to top on mobile for reverse flex */
        margin-bottom: 20px;
    }
    .page-gdpr-image {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero {
        padding: 60px 15px;
    }
    .page-gdpr-title {
        font-size: 2.2em;
    }
    .page-gdpr-subtitle {
        font-size: 1em;
    }
    .page-gdpr-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr-section {
        padding: 40px 0;
    }
    .page-gdpr-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-gdpr-card {
        padding: 20px;
    }
    .page-gdpr-card-icon {
        width: 100px;
        height: 100px;
    }
    .page-gdpr-card-title {
        font-size: 1.3em;
    }
    .page-gdpr-text-content h3 {
        font-size: 1.5em;
    }
    .page-gdpr-grid-2-col {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 1.8em;
    }
    .page-gdpr-section-title {
        font-size: 1.6em;
    }
    .page-gdpr-image {
        min-width: unset;
        min-height: unset;
    }
    .page-gdpr-card-icon {
        width: 80px;
        height: 80px;
    }
}