/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #1A1A1A;
    line-height: 1.6;
}

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

.page-gdpr .hero-section {
    background-color: #1A1A1A;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.page-gdpr .hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-gdpr .hero-subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-gdpr .section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-gdpr .section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    color: #C0C0C0;
}

.page-gdpr .sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr .content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

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

.page-gdpr .text-content {
    flex: 1;
}

.page-gdpr .image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr .content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-gdpr a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr a:hover {
    color: #FFF;
    text-decoration: underline;
}

.page-gdpr .cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr .cta-button:hover {
    background-color: #FFF;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr .secondary-cta {
    background-color: #333;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-gdpr .secondary-cta:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-gdpr .principle-item, .page-gdpr .right-item {
    background-color: #2A2A2A;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-gdpr .principle-title, .page-gdpr .right-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-gdpr .principle-text, .page-gdpr .right-text {
    color: #C0C0C0;
}

.page-gdpr .custom-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-gdpr .custom-list li {
    background-color: #2A2A2A;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #FFD700;
    color: #E0E0E0;
}

.page-gdpr .custom-list li strong {
    color: #FFD700;
}

.page-gdpr .action-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    color: #C0C0C0;
}

/* FAQ Styles */
.page-gdpr .faq-section {
    padding-bottom: 60px;
}

.page-gdpr .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #3A3A3A;
    border-radius: 8px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: #3A3A3A;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: #FFD700;
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px;
}

.faq-answer p {
    margin-bottom: 0;
}

.page-gdpr .policy-updates-section {
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr .hero-title {
        font-size: 2.8em;
    }
    .page-gdpr .section-title {
        font-size: 2em;
    }
    .page-gdpr .content-grid {
        flex-direction: column;
    }
    .page-gdpr .content-grid.reverse-grid {
        flex-direction: column;
    }
    .page-gdpr .image-wrapper {
        order: -1; /* Image on top for smaller screens */
        margin-bottom: 30px;
    }
    .page-gdpr .principles-grid, .page-gdpr .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-gdpr .hero-section {
        padding: 60px 15px;
    }
    .page-gdpr .hero-title {
        font-size: 2.2em;
    }
    .page-gdpr .hero-subtitle {
        font-size: 1.1em;
    }
    .page-gdpr .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }
    .page-gdpr .section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-gdpr .sub-section-title {
        font-size: 1.5em;
    }
    .page-gdpr .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr .principle-item, .page-gdpr .right-item {
        padding: 20px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 1.5em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr .hero-title {
        font-size: 1.8em;
    }
    .page-gdpr .section-title {
        font-size: 1.6em;
    }
    .page-gdpr .content-grid {
        gap: 20px;
    }
    .page-gdpr .content-image {
        border-radius: 5px;
    }
}