:root {
    --main-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B;
}

.page-gdpr {
    background-color: var(--deep-navy);
    color: var(--text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 40px;
    background-color: var(--main-color);
    color: var(--text-main);
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--gold-color);
}

.page-gdpr__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-gdpr__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Principles Section */
.page-gdpr__principles-section {
    background-color: var(--deep-navy);
    padding: 60px 0;
}

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

.page-gdpr__principle-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-gdpr__principle-card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__card-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Commitment and Rights Sections */
.page-gdpr__commitment-section,
.page-gdpr__rights-section {
    padding: 60px 0;
    background-color: var(--deep-navy);
}

.page-gdpr__commitment-layout,
.page-gdpr__rights-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.page-gdpr__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__commitment-list,
.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.page-gdpr__commitment-list li,
.page-gdpr__rights-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.page-gdpr__commitment-list li strong,
.page-gdpr__rights-list li strong {
    color: var(--text-main);
}

.page-gdpr__button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--button-gradient);
    color: var(--text-main);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button--secondary {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.page-gdpr__button--secondary:hover {
    background-color: var(--border-color);
    color: var(--text-main);
}

/* Contact Section */
.page-gdpr__contact-section {
    padding: 60px 0 80px;
    background-color: var(--card-bg);
    text-align: center;
}

.page-gdpr__contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__contact-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__contact-details p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-gdpr__hero-section {
        padding-bottom: 60px;
    }
    .page-gdpr__hero-image {
        margin-bottom: 30px;
    }
    .page-gdpr__commitment-layout,
    .page-gdpr__rights-layout {
        flex-direction: row;
        text-align: left;
    }

    .page-gdpr__commitment-layout .page-gdpr__image {
        order: 2;
    }
    .page-gdpr__commitment-layout .page-gdpr__text-content {
        order: 1;
    }

    .page-gdpr__rights-layout .page-gdpr__image {
        order: 1;
    }
    .page-gdpr__rights-layout .page-gdpr__text-content {
        order: 2;
    }

    .page-gdpr__text-content {
        flex: 1;
        padding-right: 30px;
    }

    .page-gdpr__commitment-layout .page-gdpr__text-content,
    .page-gdpr__rights-layout .page-gdpr__text-content {
        max-width: 50%;
    }

    .page-gdpr__contact-info {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .page-gdpr__contact-details {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 15px;
    }
    .page-gdpr__hero-content {
        padding: 0 15px;
    }
    .page-gdpr__hero-image,
    .page-gdpr__image,
    .page-gdpr__contact-image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}