/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --primary-color: #FF7F00; /* Orange */
    --secondary-color: #333; /* Dark Grey */
    --background-color: #1a1a1a; /* Dark background */
    --light-background: #2a2a2a;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --accent-color: #00bcd4; /* A light blue for highlights */
    --border-color: #444;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--background-color);
}

.bg-light {
    background-color: var(--light-background);
}

.text-white {
    color: var(--heading-color);
}

.section-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: var(--text-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--heading-color);
}

.btn-primary:hover {
    background-color: #e67300; /* Slightly darker orange */
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--heading-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: #444;
    text-decoration: none;
}

/* Top Bar */
.top-bar {
    background-color: #0d0d0d;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.top-bar-text {
    margin: 0;
}

/* Header */
.header {
    background-color: var(--background-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    white-space: nowrap;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.burger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--heading-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--heading-color);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hero-features li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features li i {
    color: var(--primary-color);
}

.hero-cta {
    font-size: 1.2rem;
    padding: 15px 35px;
}

/* About Platform Section */
.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-points {
    list-style: none;
    margin-top: 20px;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.about-points li i {
    color: var(--primary-color);
}

.about-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.about-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Platform Card Section */
.platform-grid-1-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
}

.platform-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
}

.platform-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.platform-image-link {
    display: block;
    margin-bottom: 15px;
}

.platform-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.platform-logo:hover {
    transform: scale(1.05);
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.platform-rating .stars i {
    color: var(--primary-color);
}

.rating-number {
    font-weight: 600;
    color: var(--text-color);
}

.platform-name {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.platform-description {
    margin-bottom: 25px;
    color: var(--text-color);
}

.platform-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.platform-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-color);
}

.platform-features li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.anj-link {
    color: var(--accent-color);
}

.platform-cta {
    font-size: 1.1rem;
    padding: 10px 30px;
}

/* ANJ License Section */
.anj-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.anj-text {
    flex: 1;
}

.anj-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.anj-image-wrapper {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

.anj-badge-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Comparison Section */
.comparison-table {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.comparison-header, .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-header {
    background-color: var(--primary-color);
    font-weight: 700;
    color: var(--heading-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
}

.comparison-header .comparison-cell {
    color: var(--heading-color);
}

.comparison-cell:first-child {
    justify-content: flex-start;
    text-align: left;
    background-color: var(--light-background);
}

.text-success {
    color: var(--success-color);
}

/* Detailed Review Section */
.review-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.review-text {
    flex: 1;
}

.review-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.review-highlights {
    list-style: none;
    margin-top: 20px;
}

.review-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.review-highlights li i {
    color: var(--primary-color);
}

.review-image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.review-image {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 25px;
    background-color: var(--light-background);
    color: var(--heading-color);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #3a3a3a;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-panel {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-panel p {
    padding-bottom: 20px;
    padding-top: 10px;
    color: var(--text-color);
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.testimonial-date {
    font-size: 0.9rem;
    color: #aaa;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
}

/* Contact Form Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--heading-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #3a3a3a;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.3);
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #0d0d0d; /* Very dark background to stand out */
    padding: 60px 0;
    border-top: 5px solid var(--primary-color);
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.disclaimer-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.disclaimer-icon {
    font-size: 2.2rem;
}

.disclaimer-subtitle {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.disclaimer-section p {
    margin-bottom: 15px;
}

.disclaimer-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.disclaimer-section ul li {
    margin-bottom: 8px;
}

.disclaimer-link {
    color: var(--accent-color);
}

.disclaimer-link:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1 1 300px;
    min-width: 250px;
}

.footer-brand .logo-link {
    margin-bottom: 20px;
}

.footer-brand .site-name {
    font-size: 1.5rem;
}

.footer-text {
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-email .email-link {
    word-break: break-all;
    color: var(--primary-color);
}

.footer-links,
.footer-support-logos {
    flex: 1 1 200px;
    min-width: 180px;
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}


/* Make the support logos occupy a full-width bottom row of the footer without horizontal scroll */
.footer-support-logos {
    flex: 0 0 100%;
    order: 99; /* push to bottom of footer */
    margin-top: 20px;
}

.support-logos-grid {
    display: flex;
    flex-wrap: nowrap; /* keep in one line */
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.support-logos-grid > a,
.support-logos-grid > img {
    flex: 1 1 0; /* scale to fit in a single row */
    min-width: 0;
}

.support-logos-grid img {
    width: 100%;
    height: auto;
    max-height: 32px; /* uniform row height */
    object-fit: contain;
    display: block;
}

/* ensure 18+ icon follows same sizing rules */
.support-logos-grid .eighteen-plus-icon {
    max-width: none !important;
    max-height: 32px !important;
    width: 100% !important;
}

.eighteen-plus-icon {
    max-width: 50px !important;
    height: auto;
    object-fit: contain;
}

.footer-bottom {
    background-color: #0d0d0d;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

/* Mobile layout: larger logos, 3 per row */
@media (max-width: 600px) {
    .support-logos-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 16px;
    }
    .support-logos-grid > a,
    .support-logos-grid > img {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
    .support-logos-grid img {
        max-height: 56px; /* bigger logos on mobile */
    }
    .support-logos-grid .eighteen-plus-icon {
        max-height: 56px !important;
    }
}

/* Age Verification Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-buttons .btn {
    flex: 1;
    max-width: 150px;
}

.modal-support-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    color: #eee;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.cookie-banner.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1 1 auto;
    min-width: 250px;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        border-top: 1px solid var(--border-color);
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nav-menu.active .nav-link {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-features li {
        font-size: 1rem;
    }

    .about-grid, .anj-content, .review-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image-wrapper, .anj-image-wrapper, .review-image-wrapper {
        order: -1; /* Image above text on mobile */
        margin-bottom: 30px;
    }

    .about-points, .review-highlights {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .platform-features {
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand, .footer-links, .footer-support-logos {
        width: 100%;
        min-width: unset;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .support-logos-grid {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-buttons .btn {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .hero-section {
        padding: 80px 0;
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-features li {
        font-size: 0.95rem;
    }

    .hero-cta {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .site-name {
        font-size: 1.2rem;
    }

    .platform-card {
        padding: 20px;
    }

    .platform-name {
        font-size: 1.5rem;
    }

    .platform-description {
        font-size: 0.95rem;
    }

    .platform-features li {
        font-size: 0.9rem;
    }

    .comparison-cell {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .accordion-panel p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 30px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input, .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        font-size: 1rem;
        padding: 12px;
    }

    .disclaimer-section {
        padding: 40px 0;
        font-size: 0.9rem;
    }

    .disclaimer-title {
        font-size: 1.7rem;
        gap: 10px;
    }

    .disclaimer-icon {
        font-size: 1.8rem;
    }

    .disclaimer-subtitle {
        font-size: 1.3rem;
    }

    .footer {
        padding-top: 40px;
    }

    .footer-brand .site-name {
        font-size: 1.1rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-links li, .footer-text, .footer-email {
        font-size: 0.85rem;
    }

    .support-logos-grid img {
        max-width: 100px; /* Further reduced for smaller screens */
    }

    .modal-content {
        padding: 30px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-text {
        font-size: 1rem;
    }

    .modal-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }
    .cookie-buttons .btn {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .site-name {
        font-size: 1rem;
    }

    .logo {
        height: 30px;
    }

    .platform-name {
        font-size: 1.3rem;
    }

    .platform-rating {
        font-size: 1rem;
    }

    .disclaimer-title {
        font-size: 1.4rem;
    }

    .disclaimer-icon {
        font-size: 1.5rem;
    }

    .disclaimer-subtitle {
        font-size: 1.1rem;
    }

    .support-logos-grid img {
        max-width: 80px;
    }
}
/* Parent container styling */
.dataClauseFrame {
    /* Adds space above the entire frame */
    margin-top: 1.5em;
    /* Adds internal padding to the frame, top/bottom and left/right */
    padding: 1.5em 2em;
    /* Optional: Add a background or border for visual separation if desired */
    /* background-color: #f9f9f9; */
    /* border: 1px solid #eee; */
    /* border-radius: 5px; */
}

/* Heading styles */
.dataClauseFrame h1 {
    /* Font size for main headings, kept moderate */
    font-size: 2em;
    /* Spacing above the heading */
    margin-top: 1.5em;
    /* Spacing below the heading */
    margin-bottom: 0.8em;
    /* Default font weight is usually bold, explicit for clarity */
    font-weight: bold;
    /* Line height for better readability */
    line-height: 1.2;
}

.dataClauseFrame h2 {
    font-size: 1.6em;
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    font-weight: bold;
    line-height: 1.3;
}

.dataClauseFrame h3 {
    font-size: 1.4em;
    margin-top: 1em;
    margin-bottom: 0.6em;
    font-weight: bold;
    line-height: 1.4;
}

.dataClauseFrame h4 {
    font-size: 1.2em;
    margin-top: 0.8em;
    margin-bottom: 0.5em;
    font-weight: bold;
    line-height: 1.4;
}

.dataClauseFrame h5 {
    font-size: 1.1em;
    margin-top: 0.7em;
    margin-bottom: 0.4em;
    font-weight: bold;
    line-height: 1.5;
}

/* Paragraph styles */
.dataClauseFrame p {
    /* Remove default top margin for consistent spacing */
    margin-top: 0;
    /* Spacing between paragraphs */
    margin-bottom: 1em;
    /* Line height for better readability of text blocks */
    line-height: 1.6;
}

/* Unordered list styles */
.dataClauseFrame ul {
    /* Top margin for lists */
    margin-top: 1em;
    /* Bottom margin for lists */
    margin-bottom: 1em;
    /* Indentation for list markers */
    padding-left: 2em;
    /* Default list style type */
    list-style-type: disc;
}

/* List item styles */
.dataClauseFrame li {
    /* Spacing between individual list items */
    margin-bottom: 0.3em;
    /* Line height for list item text */
    line-height: 1.5;
}

img.anj-badge-image {
    width: 30vh;
}

@media (max-width: 768px) {
  .footer-brand {
    flex: 1 1 0%;
    min-width: 100%;
  }
}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(255 255 255 / 75%) !important;
}