body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    background-color: #F5F5DC; /* Light cream/beige for tea theme */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    color: #4A4A4A;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    color: #388E3C;
    text-decoration: underline;
}

.btn {
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50; /* Green tea color */
    border-color: #4CAF50;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #388E3C;
    border-color: #388E3C;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #A1887F; /* Warm brown */
    border-color: #A1887F;
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #8D6E63;
    border-color: #8D6E63;
    color: #FFFFFF;
    transform: translateY(-2px);
}

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

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #2E2E2E;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4CAF50;
    border-radius: 2px;
}

.bg-light-tea {
    background-color: #FDF5E6; /* Lighter cream */
}

/* Age Verification Modal */
.age-verification-modal {
    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: 1050;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

.age-verification-modal.show {
    visibility: visible;
    opacity: 1;
}

.age-verification-content {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.5s ease;
}

.age-verification-modal.show .age-verification-content {
    transform: translateY(0);
}

.age-verification-content h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

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

.age-verification-buttons button {
    margin: 0 10px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2E2E2E; /* Dark background */
    color: #FFFFFF;
    padding: 15px 0;
    z-index: 1040;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner p a {
    color: #FFD700; /* Gold accent */
    text-decoration: underline;
}

.cookie-banner p a:hover {
    color: #FFE066;
}

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

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

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner p {
        margin-bottom: 15px;
    }
    .cookie-banner-buttons {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
}

/* Header */
.main-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4A4A4A;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.site-name {
    color: #4CAF50;
}

.header-description {
    margin-left: auto;
    max-width: 600px;
    text-align: right;
    font-size: 0.95rem;
    color: #666666;
}

.header-description p {
    margin: 0;
}

@media (max-width: 991px) {
    .navbar-brand {
        margin-bottom: 15px;
    }
    .header-description {
        text-align: center;
        margin-left: 0;
        max-width: 100%;
    }
    .navbar .container {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Section */
.hero-section {
    background-color: #FDF5E6;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section .container-fluid {
    max-width: 1400px;
}

.hero-section .row {
    min-height: 500px;
}

.hero-content {
    text-align: left;
    z-index: 2;
    position: relative;
    padding-left: 50px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.8s forwards 0.3s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666666;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.8s forwards 0.5s;
}

.hero-cta-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleInFadeIn 0.6s forwards 0.7s;
}

.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    z-index: 0;
}

.hero-avatars {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    z-index: 1;
}

.hero-avatar {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInAvatar 1s forwards;
}

.avatar-1 { top: 10%; left: 10%; animation-delay: 1.0s; }
.avatar-2 { top: 20%; right: 5%; animation-delay: 1.2s; }
.avatar-3 { bottom: 10%; left: 20%; animation-delay: 1.4s; }
.avatar-4 { bottom: 20%; right: 15%; animation-delay: 1.6s; }
.avatar-5 { top: 40%; left: 40%; animation-delay: 1.8s; }
.avatar-6 { bottom: 40%; right: 30%; animation-delay: 2.0s; }

@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 50px;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-image-col {
        min-height: 300px;
    }
}

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

@keyframes scaleInFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInAvatar {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* About Game Section */
.advantage-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    font-size: 3.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 1rem;
    color: #666666;
}

/* How to Play Section */
.step-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #FFD700; /* Gold accent */
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-icon {
    font-size: 3.5rem;
    color: #A1887F; /* Warm brown */
    margin-bottom: 20px;
    margin-top: 30px;
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 1rem;
    color: #666666;
}

/* Game Selection Section */
.game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.game-card .game-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.game-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.game-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .overlay {
    opacity: 1;
}

.game-card .play-icon {
    font-size: 4rem;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .play-icon {
    opacity: 1;
}

.game-card .btn-play {
    background-color: #4CAF50;
    border: none;
    color: #FFFFFF;
    padding: 10px 30px;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.game-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.game-info p {
    font-size: 0.95rem;
    color: #666666;
    flex-grow: 1;
}

.game-info .rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 15px;
}

.game-info .rating .material-symbols-outlined {
    vertical-align: middle;
}

/* Game Modal */
.game-modal {
    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: 1060;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

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

.game-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.close-modal-btn:hover {
    background-color: #FFFFFF;
    color: #4CAF50;
    transform: rotate(90deg);
}

/* Clans Section */
.clan-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.clan-emblem {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #4CAF50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.clan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.clan-card p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 5px;
}

.clan-card .star-icon {
    color: #FFD700;
    vertical-align: middle;
    font-size: 1.2rem;
}

/* Chat Section */
.chat-window {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 500px;
}

.message-list {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.chat-message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    animation: slideUpFadeInMessage 0.5s ease-out;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    flex-shrink: 0;
}

.message-content {
    background-color: #F0F0F0;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 70%;
    position: relative;
}

.chat-message.outgoing .message-content {
    background-color: #E6F4EA; /* Light green */
}

.chat-message.outgoing {
    justify-content: flex-end;
}

.chat-message.outgoing .chat-avatar {
    order: 2;
    margin-left: 10px;
    margin-right: 0;
}

.chat-message.outgoing .message-content {
    order: 1;
}

.username {
    font-weight: 600;
    color: #4CAF50;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.chat-message p {
    margin: 0;
    font-size: 0.95rem;
}

.message-actions {
    margin-left: 10px;
    display: flex;
    gap: 5px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-message:hover .message-actions {
    opacity: 1;
}

.action-icon {
    font-size: 1.2rem;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.action-icon:hover {
    color: #4A4A4A;
    transform: scale(1.1);
}

.message-input {
    display: flex;
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 10px;
    border-top: 1px solid #EEEEEE;
}

.message-input input {
    flex-grow: 1;
    border: 1px solid #DDDDDD;
    border-radius: 20px;
    padding: 10px 15px;
    margin-right: 10px;
    font-size: 1rem;
}

.message-input input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.message-input .btn {
    padding: 10px 20px;
    border-radius: 20px;
}

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

/* FAQ Social Section */
.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header .accordion-button {
    background-color: #FFFFFF;
    color: #4A4A4A;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 18px 25px;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: #4CAF50;
    color: #FFFFFF;
}

.accordion-header .accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    background-color: #FDFDFD;
    border-top: 1px solid #EEEEEE;
    color: #666666;
}

/* Testimonials Social Section */
.testimonial-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid #FFD700;
}

.testimonial-card h4 {
    font-size: 1.4rem;
    color: #4A4A4A;
}

.testimonial-card p {
    font-style: italic;
    color: #555555;
    margin-top: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999999;
    text-align: right;
    display: block;
}

.badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
}

.badge .material-symbols-outlined {
    font-size: 1rem;
    margin-right: 5px;
}

.bg-gold {
    background-color: #FFD700;
    color: #333333;
}

.bg-green {
    background-color: #4CAF50;
    color: #FFFFFF;
}

.bg-brown {
    background-color: #A1887F;
    color: #FFFFFF;
}

/* Contact Section */
.contact-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
}

.contact-form .form-label {
    font-weight: 600;
    color: #4A4A4A;
}

.contact-form .form-control {
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #DDDDDD;
}

.contact-form .form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.contact-info {
    margin-top: 50px;
    color: #555555;
}

.contact-info h3 {
    color: #4A4A4A;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #FFF3E0; /* Light orange/cream for warning */
    padding: 60px 0;
    border-top: 5px solid #FF9800; /* Orange border */
    border-bottom: 5px solid #FF9800;
    margin-top: 80px;
    position: relative;
}

.disclaimer-content {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.disclaimer-header .warning-icon {
    font-size: 3rem;
    color: #FF9800;
    margin-right: 15px;
}

.disclaimer-header h3 {
    color: #FF9800;
    font-size: 2.2rem;
    margin: 0;
}

.disclaimer-content p {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.disclaimer-content p strong {
    color: #333333;
}

.disclaimer-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.disclaimer-content a:hover {
    color: #388E3C;
}

/* Footer */
.main-footer {
    background-color: #2E2E2E; /* Dark grey */
    color: #E0E0E0;
    padding-top: 60px;
    padding-bottom: 40px;
    font-size: 0.95rem;
}

.main-footer h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

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

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

.main-footer ul li a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer ul li a:hover {
    color: #4CAF50;
    text-decoration: none;
}

.footer-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-link .site-name {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: 700;
}

.copyright-text {
    margin: 0;
    color: #B0B0B0;
    font-size: 0.85rem;
}

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer-partners a, .footer-partners img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 120px; /* Adjusted from 100-150 to 120 for 6 images */
    height: auto;
    object-fit: contain;
}

.footer-partners img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .main-footer .col-md-3 {
        text-align: center;
    }
    .main-footer h4 {
        margin-bottom: 15px;
    }
    .footer-bottom .text-md-start, .footer-bottom .text-md-end {
        text-align: center !important;
    }
    .footer-partners {
        justify-content: center;
        margin-top: 20px;
    }
    .footer-logo-link {
        justify-content: center;
    }
}
/* Styles for the main container */
.privacyNestZone {
  padding-top: 2rem; /* Top padding for the content area */
  padding-left: 1.5rem; /* Left padding for the content area */
  padding-right: 1.5rem; /* Right padding for the content area */
  /* Optional: Add max-width and margin: auto for better readability on very wide screens */
  /* max-width: 1200px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}

/* Heading styles */
.privacyNestZone h1 {
  font-size: 1.875rem; /* Approximately 30px, moderate size */
  line-height: 1.2;
  margin-top: 2.5rem; /* Space above the heading */
  margin-bottom: 1.25rem; /* Space below the heading */
  font-weight: 700; /* Bold font weight */
}

.privacyNestZone h2 {
  font-size: 1.5rem; /* Approximately 24px */
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.privacyNestZone h3 {
  font-size: 1.25rem; /* Approximately 20px */
  line-height: 1.4;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.privacyNestZone h4 {
  font-size: 1.125rem; /* Approximately 18px */
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.privacyNestZone h5 {
  font-size: 1rem; /* Approximately 16px, similar to body text */
  line-height: 1.5;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Paragraph styles */
.privacyNestZone p {
  font-size: 1rem; /* Base font size for paragraphs */
  line-height: 1.6; /* Good readability for body text */
  margin-bottom: 1rem; /* Space between paragraphs */
}

/* Unordered list styles */
.privacyNestZone ul {
  list-style-type: disc; /* Default bullet points */
  margin-bottom: 1rem; /* Space below the list */
  padding-left: 1.5rem; /* Indentation for bullet points */
}

/* List item styles */
.privacyNestZone li {
  font-size: 1rem; /* Base font size for list items */
  line-height: 1.6; /* Good readability for list item text */
  margin-bottom: 0.5rem; /* Space between individual list items */
}

.age-verification-buttons{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
}