body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

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

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

h1, h2, h3, h4, h5, h6 {
    color: #e94560;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

.site-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2.2rem;
    }
 
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 2rem;
    }
 
}

@media (max-width: 767px) {
    h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    .site-name {
        font-size: 14px;
    }
}

p {
    margin-bottom: 15px;
}

a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6b81;
}

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

.btn-primary {
    background-color: #e94560;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: #ff6b81;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #0f3460;
    color: #ffffff;
    border: 1px solid #0f3460;
}

.btn-secondary:hover {
    background-color: #1a1a2e;
    border-color: #e94560;
    transform: translateY(-2px);
}

/* Top Bar Disclaimer */
.top-bar-disclaimer {
    background-color: #e94560;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Header */
.main-header {
    background-color: #0f3460;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav .nav-list li a {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav .nav-list li a:hover {
    color: #e94560;
}

.burger-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .main-nav .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0f3460;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
        overflow-x: hidden;
        z-index: 999;
    }

    .main-nav .nav-list.active {
        display: flex;
    }

    .main-nav .nav-list li {
        text-align: center; 
    }

    .main-nav .nav-list li a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }

    .burger-menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #e0e0e0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-text-content {
    max-width: 700px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s forwards ease-out;
    animation-delay: 0.5s;
}

.hero-text-content h1 {
    color: #e94560;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.hero-text-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-text-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards ease-out;
    animation-delay: 1s;
}

.hero-cards-stack {
    position: relative;
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin-top: 50px;
}

.game-card {
    position: absolute;
    width: 250px;
    height: 180px;
    background-color: #1a1a2e;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translate(0, 0) rotateY(0deg);
    animation: cardDeal 1.5s forwards ease-out;
}

.game-card.card-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg) translateX(-20px);
    z-index: 3;
    animation-delay: 1.5s;
}

.game-card.card-2 {
    top: 10px;
    left: 20px;
    transform: rotate(5deg) translateX(0px);
    z-index: 2;
    animation-delay: 1.7s;
}

.game-card.card-3 {
    top: 20px;
    left: 40px;
    transform: rotate(-5deg) translateX(20px);
    z-index: 1;
    animation-delay: 1.9s;
}

.game-card:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #e0e0e0;
    text-align: left;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.game-card:hover .card-details {
    transform: translateY(0%);
    opacity: 1;
}

.card-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #e94560;
    text-align: left;
}

.card-details p {
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        text-align: left;
    }

    .hero-text-content {
        margin-bottom: 0;
        margin-right: 50px;
    }

    .hero-text-content h1 {
        text-align: left;
    }

    .hero-cards-stack {
        width: 400px;
        height: 250px;
        margin-top: 0;
    }

    .game-card {
        width: 300px;
        height: 220px;
    }

    .game-card.card-1 {
        transform: rotate(-10deg) translateX(-30px);
    }

    .game-card.card-2 {
        transform: rotate(5deg) translateX(0px);
    }

    .game-card.card-3 {
        transform: rotate(-5deg) translateX(30px);
    }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes cardDeal {
    0% { opacity: 0; transform: translate(0, 0) rotateY(90deg); }
    100% { opacity: 1; }
}

/* About Section */
.about-section {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.about-section h2 {
    color: #e94560;
    margin-bottom: 40px;
}

.about-points {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.about-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    background-color: #0f3460;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-points li i {
    color: #e94560;
    font-size: 1.4rem;
}

/* Games Section */
.games-section {
    background-color: #0f3460;
    color: #e0e0e0;
}

.games-section h2 {
    color: #e94560;
    margin-bottom: 40px;
}

.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card-item {
    background-color: #1a1a2e;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.game-card-item .game-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #0f3460;
}

.game-card-item h3 {
    color: #e94560;
    margin: 20px 15px 10px;
    font-size: 1.3rem;
    text-align: center;
}

.game-card-item p {
    padding: 0 15px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.game-rating {
    margin: 10px 15px 15px;
    color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.game-rating i {
    font-size: 1.1rem;
}

.game-rating span {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-left: 5px;
}

.game-card-item .play-game-btn {
    margin: 0 15px 20px;
    width: calc(100% - 30px);
    align-self: center;
}

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

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

.game-modal-content {
    position: relative;
    width: 95%;
    height: 95%;
    background-color: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e94560;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.game-modal-close:hover {
    background-color: #ff6b81;
}

.game-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Why Us Section */
.why-us-section {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.why-us-section h2 {
    color: #e94560;
    margin-bottom: 40px;
}

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

.reason-item {
    background-color: #0f3460;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-10px);
    background-color: #1a1a2e;
}

.reason-item i {
    font-size: 3.5rem;
    color: #e94560;
    margin-bottom: 20px;
}

.reason-item h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.reason-item p {
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #0f3460;
    color: #e0e0e0;
}

.testimonials-section h2 {
    color: #e94560;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-item {
    width: 300px;
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.testimonial-header .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e94560;
}

.testimonial-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #e0e0e0;
    text-align: left;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.testimonial-item p {
    font-style: italic;
    font-size: 1rem;
    color: #c0c0c0;
}

/* FAQ Section */
.faq-section {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.faq-section h2 {
    color: #e94560;
    margin-bottom: 40px;
}

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

.accordion-item {
    margin-bottom: 15px;
    background-color: #0f3460;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.accordion-toggle {
    width: 100%;
    background-color: #0f3460;
    color: #e0e0e0;
    padding: 18px 25px;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.accordion-toggle i {
    margin-right: 10px;
    font-size: 1.3rem;
    color: #e94560;
    transition: transform 0.3s ease;
}

.accordion-toggle.active i {
    transform: rotate(180deg);
}

.accordion-toggle:hover {
    background-color: #1a1a2e;
}

.accordion-content {
    padding: 0 25px;
    background-color: #1a1a2e;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.accordion-content p {
    margin: 0;
    color: #c0c0c0;
}

/* Contact Section */
.contact-section {
    background-color: #0f3460;
    color: #e0e0e0;
}

.contact-section h2 {
    color: #e94560;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #1a1a2e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e0e0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #0f3460;
    border-radius: 8px;
    background-color: #2e2e4a;
    color: #e0e0e0;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #e94560;
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.3);
}

.form-group .error-message {
    color: #ff6b81;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff6b81;
}

.form-group.error .error-message {
    display: block;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #2e2e4a;
    border-top: 5px solid #e94560;
    border-bottom: 5px solid #e94560;
    padding: 60px 0;
    text-align: center;
    color: #e0e0e0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2), 0 5px 20px rgba(0, 0, 0, 0.2);
}

.disclaimer-section h3 {
    color: #e94560;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.disclaimer-section h3::before {
    content: '\f071'; /* Font Awesome warning icon, if FA is used. Using Remix Icon for consistency. */
    font-family: 'Remix Icon';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
    font-size: 3rem;
    color: #ffc107;
    top: 0;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.disclaimer-section a {
    color: #e94560;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: #0f3460;
    color: #e0e0e0;
    padding-top: 50px;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1 1 100%;
    margin-bottom: 30px;
    text-align: center;
}

.footer-brand .logo-container {
    justify-content: center;
    margin-bottom: 15px;
}

.footer-brand .site-name {
    color: #e0e0e0;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #a0a0a0;
    margin: 0;
}

.main-footer .footer-accordion-item {
    flex: 1 1 100%;
    margin-bottom: 20px;
}

.main-footer .accordion-toggle {
    background-color: #0f3460;
    color: #e0e0e0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 600;
}

.main-footer .accordion-toggle i {
    color: #e94560;
}

.main-footer .accordion-content {
    background-color: #0f3460;
    padding: 0;
    transition: max-height 0.4s ease-out;
}

.main-footer .accordion-content.active {
    padding: 10px 0;
}

.main-footer .accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer .accordion-content li {
    margin-bottom: 10px;
}

.main-footer .accordion-content li:last-child {
    margin-bottom: 0;
}

.main-footer .accordion-content a {
    color: #c0c0c0;
    font-size: 0.9rem;
}

.main-footer .accordion-content a:hover {
    color: #e94560;
}

@media (min-width: 768px) {
    .footer-brand {
        flex: 1 1 30%;
        text-align: left;
        margin-bottom: 0;
    }

    .footer-brand .logo-container {
        justify-content: flex-start;
    }

    .main-footer .footer-accordion-item {
        flex: 1 1 30%;
        margin-bottom: 0;
    }

    .main-footer .accordion-toggle {
        border-bottom: none;
        cursor: default;
        justify-content: flex-start;
    }

    .main-footer .accordion-toggle i {
        display: none;
    }

    .main-footer .accordion-content {
        max-height: none !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static;
    }
}

.responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-gaming-logos img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
}

.responsible-gaming-logos .age-restriction-icon {
    max-width: 60px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #0c2c50;
    color: #a0a0a0;
    font-size: 0.85rem;
}

/* Age Verification Pop-up */
.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: 3000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.age-verification-content {
    background-color: #1a1a2e;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
    max-width: 450px;
    width: 90%;
    color: #e0e0e0;
}

.age-verification-content h2 {
    color: #e94560;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

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

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

.age-verification-buttons .btn {
    min-width: 120px;
    padding: 12px 20px;
    font-size: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0f3460;
    color: #e0e0e0;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    transition: transform 0.3s ease-out;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-banner a {
    color: #e94560;
    text-decoration: underline;
}

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

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



/* Cookie Settings Modal */
.cookie-settings-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: 2500;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

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

.cookie-settings-modal-content {
    background-color: #1a1a2e;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    color: #e0e0e0;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-modal-content h3 {
    color: #e94560;
    margin-bottom: 20px;
    font-size: 1.6rem;
    text-align: center;
}

.cookie-settings-modal-content p {
    margin-bottom: 25px;
    font-size: 1rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    accent-color: #e94560;
}

.cookie-category label {
    font-size: 1rem;
    color: #e0e0e0;
}

.cookie-settings-modal-content .btn-primary {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-size: 1rem;
}
/* Parent container for content clauses */
.dataClauseFrame {
    margin: 20px 20px 0 20px; /* Top and side margins for the frame, no bottom margin */
    /* Add padding if content should not touch the very edge of this frame */
    /* padding: 15px; */
}

/* Heading styles */
.dataClauseFrame h1 {
    font-size: 1.8rem; /* Modest size for H1 */
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: bold;
}

.dataClauseFrame h2 {
    font-size: 1.6rem; /* Modest size for H2 */
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: bold;
}

.dataClauseFrame h3 {
    font-size: 1.4rem; /* Modest size for H3 */
    line-height: 1.4;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: bold;
}

.dataClauseFrame h4 {
    font-size: 1.2rem; /* Modest size for H4 */
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.dataClauseFrame h5 {
    font-size: 1.1rem; /* Modest size for H5 */
    line-height: 1.6;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: bold;
}

/* Paragraph styles */
.dataClauseFrame p {
    font-size: 1rem; /* Base font size */
    line-height: 1.6; /* Improved readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.dataClauseFrame ul {
    list-style-type: disc; /* Default bullet style */
    margin-left: 1.5em; /* Indent the list */
    padding-left: 0; /* Reset default padding if any, let margin handle indent */
    margin-bottom: 1em; /* Space after the list */
}

/* List item styles */
.dataClauseFrame li {
    font-size: 1rem; /* Inherit or explicitly set */
    line-height: 1.6; /* Match paragraph line-height */
    margin-bottom: 0.5em; /* Space between list items */
}
@media (max-width: 767px) {
    .hero-text-content h1 {
        font-size: 25px;
    }
    .cookie-banner {
        width: fit-content;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-buttons .btn {
        flex: 1;
    }
}