/* style/privacy-policy-user-rights.css */

.page-privacy-policy-user-rights {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1A237E; /* Main text color on light background */
    background-color: #FFFFFF;
}

.page-privacy-policy-user-rights__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-privacy-policy-user-rights__hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #3a47a1 100%); /* Dark indigo gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy-user-rights__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: #FFD700;
    opacity: 0.1;
    border-radius: 50%;
    animation: page-privacy-policy-user-rights__float 10s ease-in-out infinite;
    z-index: 0;
}

.page-privacy-policy-user-rights__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: #FFD700;
    opacity: 0.15;
    border-radius: 50%;
    animation: page-privacy-policy-user-rights__float 12s ease-in-out infinite reverse;
    z-index: 0;
}

.page-privacy-policy-user-rights__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    position: relative;
    z-index: 1;
}

.page-privacy-policy-user-rights__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.page-privacy-policy-user-rights__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Content Section */
.page-privacy-policy-user-rights__content-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-privacy-policy-user-rights__article {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy-user-rights__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark indigo */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
}

.page-privacy-policy-user-rights__sub-section-title {
    font-size: 1.8em;
    color: #1A237E; /* Dark indigo */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy-user-rights p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333; /* Slightly lighter text for readability */
}

.page-privacy-policy-user-rights ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #333333;
}

.page-privacy-policy-user-rights li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-privacy-policy-user-rights strong {
    color: #1A237E;
}

.page-privacy-policy-user-rights__image-inline {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-privacy-policy-user-rights__faq-item {
    background-color: #F8F8F8;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.page-privacy-policy-user-rights__faq-question {
    font-size: 1.3em;
    color: #1A237E;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-privacy-policy-user-rights__faq-answer {
    color: #555555;
}

/* Call to Action */
.page-privacy-policy-user-rights__call-to-action {
    text-align: center;
    padding: 50px 20px;
    background-color: #1A237E; /* Dark indigo background */
    color: #FFFFFF;
    border-radius: 8px;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy-user-rights__call-to-action .page-privacy-policy-user-rights__section-title {
    color: #FFD700; /* Gold title on dark background */
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

.page-privacy-policy-user-rights__call-to-action p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter text for contrast */
}

.page-privacy-policy-user-rights__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-privacy-policy-user-rights__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    min-width: 200px;
    text-align: center;
}

.page-privacy-policy-user-rights__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A237E; /* Dark indigo text on gold */
    border: 2px solid #FFD700;
}

.page-privacy-policy-user-rights__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-privacy-policy-user-rights__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-privacy-policy-user-rights__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy-user-rights__hero-title {
        font-size: 2.2em;
    }

    .page-privacy-policy-user-rights__hero-subtitle {
        font-size: 1em;
    }

    .page-privacy-policy-user-rights__section-title {
        font-size: 2em;
    }

    .page-privacy-policy-user-rights__sub-section-title {
        font-size: 1.5em;
    }

    .page-privacy-policy-user-rights__article {
        padding: 20px;
    }

    .page-privacy-policy-user-rights__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy-user-rights__btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy-user-rights__hero-title {
        font-size: 1.8em;
    }

    .page-privacy-policy-user-rights__section-title {
        font-size: 1.6em;
    }

    .page-privacy-policy-user-rights__sub-section-title {
        font-size: 1.3em;
    }

    .page-privacy-policy-user-rights p,
    .page-privacy-policy-user-rights li,
    .page-privacy-policy-user-rights__faq-answer {
        font-size: 0.95em;
    }

    .page-privacy-policy-user-rights__faq-question {
        font-size: 1.1em;
    }
}

/* Keyframe Animations */
@keyframes page-privacy-policy-user-rights__float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, 20px); }
    100% { transform: translate(0, 0); }
}