/* Global Styles */
:root {
    --primary-color: #00ff00; /* Lime Green */
    --secondary-color: #00cc00; /* Darker Lime Green */
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --dark-text: #cccccc;
    --accent-color: #00ff00;
    --border-color: #333333;
    --card-bg: #2a2a2a;
    --overlay-color: rgba(0, 0, 0, 0.7);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-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(--secondary-color);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--dark-text);
    font-size: 1.1rem;
}

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

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Typography Responsiveness */
h1 {
    font-size: 2.5rem; /* Desktop */
}

h2 {
    font-size: 2.2rem; /* Desktop */
}

h3 {
    font-size: 1.8rem; /* Desktop */
}

.site-name {
    font-size: 1.8rem; /* Desktop */
}

@media (max-width: 1023px) {
    h1 {
        font-size: 2.2rem; /* Tablet */
    }
    h2 {
        font-size: 2rem; /* Tablet */
    }
    h3 {
        font-size: 1.6rem; /* Tablet */
    }
    .site-name {
        font-size: 1.6rem; /* Tablet */
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem; /* Mobile */
        line-height: 1.2;
    }
    h2 {
        font-size: 1.5rem; /* Mobile */
        line-height: 1.2;
    }
    h3 {
        font-size: 1.25rem; /* Mobile */
        line-height: 1.2;
    }
    .site-name {
        font-size: 1.25rem; /* Mobile */
    }
    .section-padding {
        padding: 60px 0;
    }
}

/* Age Verification Splash Screen */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.age-verification-modal {
    background-color: var(--card-bg);
    border: 2px solid var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.age-verification-modal h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.age-verification-modal p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.age-verification-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

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

.age-verification-support {
    font-size: 0.9rem;
    color: var(--dark-text);
}

/* Top Info Bar */
.top-info-bar {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.9rem;
    position: relative;
    z-index: 9999;
}

.top-info-bar p {
    margin: 0;
}

/* Header */
.header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
    text-decoration: none;
}

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

.site-name {
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.logo-link:hover .site-name {
    color: var(--secondary-color);
}

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

.nav-link {
    color: var(--light-text);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Navigation */
@media (max-width: 1100px) {
    .nav-menu {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100%;
        background-color: var(--dark-bg);
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }

    .nav-link {
        font-size: 1.3rem;
        width: 100%;
        padding: 10px 0;
    }

    .burger-menu {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    overflow: hidden;
    padding: 80px 0;
}

.hero-background {
    background: url('visuals/pics/hero-background_236.jpg') no-repeat center center/cover;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s forwards;
}

.main-heading {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.sub-heading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.advantages-list li {
    font-size: 1.1rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.advantages-list li i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.anj-statement {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.hero-content .btn {
    animation-delay: 0.5s;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Block 1: Why ANJ License is Important */
.anj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.anj-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anj-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

.anj-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.anj-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.anj-item p {
    color: var(--dark-text);
}

/* Block 2: Offers Section */
.offers-section {
    background-color: var(--dark-bg);
}

.offers-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.offer-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%; /* 1 card per row */
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.2);
}

.offer-image-link {
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    text-align: center;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 250px;
}

.offer-image-link:hover .offer-image {
    transform: scale(1.05);
}

.offer-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.offer-title {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating {
    color: #ffcc00; /* Gold for stars */
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    font-size: 1.2rem;
}

.offer-description {
    color: var(--dark-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.offer-features {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.offer-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.offer-card .btn-secondary {
    width: fit-content;
    align-self: flex-start;
}

.anj-license-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: auto;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .offer-card {
        flex-direction: row;
    }

    .offer-image-link {
        width: 300px;
        height: auto;
    }

    .offer-content {
        flex-grow: 1;
    }
}

@media (max-width: 767px) {
    .offer-image-link {
        height: 200px;
    }
    .offer-content {
        padding: 20px;
    }
    .anj-license-badge {
        bottom: 15px;
        right: 15px;
        width: 50px;
    }
}

/* Block 3: About Us */
.about-section {
    background-color: var(--dark-bg);
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
    object-fit: cover;
}

.about-text {
    flex: 1;
    color: var(--dark-text);
}

.about-text p {
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        max-width: 80%;
        margin-bottom: 30px;
    }
}

/* Block 4: Why Trust Our Platform? */
.trust-section {
    background-color: var(--card-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media screen and (width <1200px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (width <576px) {
    .trust-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


.trust-item {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

.trust-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-item p {
    color: var(--dark-text);
}

/* Block 5: Editor's Choice */
.editors-choice-section {
    background-color: var(--dark-bg);
}

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

.choice-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.choice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.2);
}

.choice-image {
    max-width: 150px;
    height: auto;
    margin: 0 auto 25px;
    border-radius: 8px;
    object-fit: contain;
}

.choice-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.choice-text {
    color: var(--dark-text);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Block 6: Reviews */
.reviews-section {
    background-color: var(--card-bg);
}

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

.review-card {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

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

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

.review-card .rating {
    margin-bottom: 15px;
}

.review-text {
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-date {
    font-size: 0.9rem;
    color: var(--dark-text);
    text-align: right;
    display: block;
}

/* Block 7: FAQ */
.faq-section {
    background-color: var(--dark-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.accordion-header:hover, .accordion-header[aria-expanded="true"] {
    background-color: var(--border-color);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.accordion-panel {
    padding: 0 25px;
    background-color: var(--card-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-panel.open {
    max-height: 200px; /* Adjust as needed for content */
    padding: 20px 25px;
}

.accordion-panel p {
    color: var(--dark-text);
    margin: 0;
}

/* Contact Form */
.contact-section {
    background-color: var(--card-bg);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 30px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

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

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

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

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

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

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

.contact-info {
    text-align: center;
    color: var(--dark-text);
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-info a {
    color: var(--primary-color);
}

/* Responsible Gaming Disclaimer */
.responsible-gaming-disclaimer {
    background-color: #2b0000; /* Dark red background for warning */
    color: #fff;
    border-top: 5px solid #ff0000; /* Red border */
    padding: 60px 0;
    margin-bottom: 0; /* Ensure it's above the footer */
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #ff0000;
}

.disclaimer-title {
    color: #ff0000;
    margin: 0;
    font-size: 2rem;
}

.responsible-gaming-disclaimer p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #eee;
}

.responsible-gaming-disclaimer h3 {
    color: #ffcc00; /* Gold for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.responsible-gaming-disclaimer a {
    color: #ffcc00;
    text-decoration: underline;
}

.responsible-gaming-disclaimer a:hover {
    color: #fff;
}

.highlight-phone {
    font-weight: bold;
    color: #ffcc00;
}

@media (max-width: 767px) {
    .disclaimer-header {
        flex-direction: column;
        text-align: center;
    }
    .disclaimer-title {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: #111111;
    color: var(--dark-text);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

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

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

.footer-brand .site-name {
    color: var(--primary-color);
}

.footer-column h3 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

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

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-support .support-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.footer-support .support-logos img {
    max-width: 120px; /* Adjusted width for footer logos */
    height: auto;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.footer-support .support-logos img:hover {
    filter: brightness(1);
}

.age-restriction-icon {
    max-width: 50px !important;
    height: auto;
    filter: none !important;
}

@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        min-width: unset;
        width: 100%;
    }
    .footer-support .support-logos {
        justify-content: center;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    color: var(--light-text);
    padding: 15px 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 9990;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9995;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.cookie-settings-modal.open {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background-color: var(--dark-bg);
    border: 2px solid var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.cookie-settings-content p {
    color: var(--dark-text);
    margin-bottom: 30px;
    text-align: center;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cookie-category small {
    color: #888888;
    font-size: 0.85rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #555;
    cursor: not-allowed;
}

.cookie-settings-content .btn-primary {
    width: 100%;
    margin-top: 20px;
}

.cookie-settings-modal .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-settings-modal .close-button:hover {
    color: var(--primary-color);
}
/* Parent container padding */
.termsCaveBox {
    padding: 30px 20px; /* Top/bottom and left/right padding for the content box */
}

/* Paragraph styling */
.termsCaveBox p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Standard line height for readability */
    margin-bottom: 1em; /* Space after paragraphs */
}

/* Heading 1 styling */
.termsCaveBox h1 {
    font-size: 2rem; /* Moderate font size for H1 */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2em; /* Space before H1 */
    margin-bottom: 0.8em; /* Space after H1 */
    font-weight: bold; /* Bold text */
}

/* Heading 2 styling */
.termsCaveBox h2 {
    font-size: 1.6rem; /* Moderate font size for H2 */
    line-height: 1.3;
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

/* Heading 3 styling */
.termsCaveBox h3 {
    font-size: 1.4rem; /* Moderate font size for H3 */
    line-height: 1.4;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    font-weight: bold;
}

/* Heading 4 styling */
.termsCaveBox h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    line-height: 1.5;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/* Heading 5 styling */
.termsCaveBox h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.4em;
    font-weight: bold;
}

/* Unordered list styling */
.termsCaveBox ul {
    list-style-type: disc; /* Default disc bullets */
    margin-top: 1em; /* Space before the list */
    margin-bottom: 1em; /* Space after the list */
    padding-left: 20px; /* Indentation for bullets */
}

/* List item styling */
.termsCaveBox li {
    font-size: 1rem; /* Consistent font size with paragraphs */
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.5em; /* Space between list items */
}
