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

*, *::before, *::after {
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #222;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #C70039;
    position: relative;
    padding-bottom: 10px;
}

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

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

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

.btn-primary {
    background-color: #C70039;
    color: #fff;
}

.btn-primary:hover {
    background-color: #FF5733;
}

.btn-secondary {
    background-color: #555;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #777;
}

.top-disclaimer {
    background-color: #C70039;
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.header-section {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
}

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

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C70039;
}

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

.nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #C70039;
}

.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #C70039;
    cursor: pointer;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
    justify-content: flex-end;
}

.mobile-nav-overlay.open {
    display: flex;
}

.mobile-nav-content {
    background-color: #fff;
    width: 70%;
    max-width: 300px;
    height: 100%;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-mobile-nav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #C70039;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 50px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-link:hover {
    color: #C70039;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(199, 0, 57, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #eee;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn {
    margin: 0 10px;
    min-width: 150px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    z-index: 3;
    display: block;
    margin-top: 50px;
}

.scroll-indicator i {
    display: block;
}

.about-platform-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-platform-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.about-text-content {
    flex: 1;
}

.about-text-content h3 {
    font-size: 1.6rem;
    color: #C70039;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text-content p {
    margin-bottom: 1rem;
    color: #444;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.advantages-list li {
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.advantages-list li::before {
    content: '\2713'; 
    color: #FF5733;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.advantages-list li strong {
    color: #C70039;
}

.about-image-container {
    flex: 1;
    text-align: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.our-advantages-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.advantage-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3.5rem;
    color: #C70039;
    margin-bottom: 15px;
    display: block;
}

.advantage-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.advantage-text {
    color: #666;
}

.about-game-section, .how-to-play-section, .faq-social-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-game-section:nth-of-type(odd), .faq-social-section:nth-of-type(odd) {
    background-color: #f8f8f8;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    display: block;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.faq-question-icon {
    margin-right: 10px;
    color: #C70039;
}

.faq-question::marker, .faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '\F282'; 
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

details[open] > .faq-question::after {
    content: '\F286'; 
}

.faq-answer {
    padding: 15px 20px 20px 20px;
    color: #555;
    font-size: 1rem;
    background-color: #fdfdfd;
}

.game-selection-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.game-card-image {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    display: block;
}

.game-card-title {
    font-size: 1.4rem;
    color: #333;
    margin: 15px 0 10px;
    padding: 0 15px;
}

.game-card .btn-play {
    background-color: #C70039;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: auto 15px 15px 15px;
    display: block;
    width: auto;
}

.game-card .btn-play:hover {
    background-color: #FF5733;
}

.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.game-modal.open {
    display: flex;
}

.game-modal-content {
    position: relative;
    width: 95%;
    height: 95%;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.close-game-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
}

.close-game-modal-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

#gameIframe {
    width: 100%;
    height: 100%;
    display: block;
}

.tournaments-section {
    background: linear-gradient(135deg, #C70039, #FF5733);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.tournaments-title {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.tournaments-title::after {
    background-color: #fff;
}

.tournaments-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #eee;
}

.tournaments-cta-button {
    background-color: #fff;
    color: #C70039;
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px;
}

.tournaments-cta-button:hover {
    background-color: #f0f0f0;
    color: #C70039;
}

.achievements-section {
    padding: 80px 0;
    background-color: #fff;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.achievement-badge {
    background-color: #fdfdfd;
    padding: 30px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.achievement-overlay {
    background-color: rgba(0, 0, 0, .2);
    inset: 0;
    position: absolute;
}

.achievement-icon {
    font-size: 4rem;
    color: #FFC300;
    margin-bottom: 15px;
}

.achievement-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.testimonials-social-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #C70039;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #C70039;
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 0, 57, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.disclaimer-block-section {
    padding: 60px 0;
    background-color: #ffe0e0; 
    border-top: 5px solid #C70039;
    border-bottom: 5px solid #C70039;
}

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

.disclaimer-title {
    font-size: 1.8rem;
    color: #C70039;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-icon {
    font-size: 2.2rem;
    margin-right: 15px;
    color: #FF5733;
}

.disclaimer-block-container p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-section {
    background-color: #222;
    color: #eee;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.footer-brand .logo-link .site-name {
    color: #fff;
}

.footer-tagline {
    margin-top: 15px;
    color: #bbb;
}

.footer-links-group {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-accordion {
    flex: 1;
    min-width: 150px;
}

.footer-accordion-summary {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 25px;
}

.footer-accordion-summary::marker, .footer-accordion-summary::-webkit-details-marker {
    display: none;
}

.footer-accordion-summary::after {
    content: '\F282'; 
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

details[open] > .footer-accordion-summary::after {
    content: '\F286'; 
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    text-decoration: none;
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C70039;
}

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.footer-partner-logo {
    height: auto;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    display: block;
}

.icon-18plus {
    max-width: 50px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #999;
}

.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: 3000;
    display: none;
}

.age-verification-modal.open {
    display: flex;
}

.age-verification-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.age-verification-title {
    font-size: 2rem;
    color: #C70039;
    margin-bottom: 20px;
}

.age-verification-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

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

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

@media (max-width: 1023px) {
    .site-name {
        font-size: 1.6rem;
    }
    .nav-menu {
        display: none;
    }
    .burger-menu-btn {
        display: block;
    }
    .hero-section {
        min-height: 80vh;
        padding: 60px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .about-content-wrapper {
        flex-direction: column;
    }
    .about-image-container {
        order: -1;
    }
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .game-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .game-card-image {
        height: 200px;
    }
    .game-card-title {
        font-size: 1.2rem;
    }
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links-group {
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    .footer-accordion {
        width: 100%;
    }
    .footer-accordion-summary {
        text-align: center;
        border-bottom: 1px solid #444;
        padding: 15px 0;
    }
    .footer-accordion-summary::after {
        right: 15px;
    }
    .footer-list {
        padding: 10px 0 20px;
        text-align: center;
    }
    .footer-partners {
        gap: 15px;
    }
    .footer-partner-logo {
        max-width: 100px;
    }
}

@media (max-width: 767px) {
    .site-name {
        font-size: 1rem;
    }
    .logo-img {
        height: 30px;
    }
    .top-disclaimer {
        font-size: 0.75rem;
    }
    .hero-section {
        padding: 40px 0;
        min-height: 60vh;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    .scroll-indicator {
        font-size: 2rem;
        bottom: 20px;
        margin-top: 30px;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .about-platform-section, .our-advantages-section, .about-game-section, .how-to-play-section, .game-selection-section, .tournaments-section, .achievements-section, .faq-social-section, .testimonials-social-section, .contact-form-section, .disclaimer-block-section {
        padding: 50px 0;
    }
    .advantage-icon {
        font-size: 3rem;
    }
    .advantage-title {
        font-size: 1.2rem;
    }
    .game-cards-grid {
        grid-template-columns: 1fr;
    }
    .game-card-image {
        height: 200px;
    }
    .game-card-title {
        font-size: 1.1rem;
    }
    .game-card .btn-play {
        font-size: 0.9rem;
    }
    .tournaments-subtitle {
        font-size: 1rem;
    }
    .tournaments-cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    .achievement-icon {
        font-size: 3.5rem;
    }
    .achievement-title {
        font-size: 1.1rem;
    }
    .testimonial-quote {
        font-size: 1rem;
    }
    .disclaimer-title {
        font-size: 1.4rem;
    }
    .disclaimer-icon {
        font-size: 1.8rem;
    }
    .disclaimer-block-container p {
        font-size: 0.85rem;
    }
    .footer-section {
        padding: 40px 0 15px;
    }
    .footer-brand .logo-link .site-name {
        font-size: 1.2rem;
    }
    .footer-partner-logo {
        max-width: 80px;
    }
    .icon-18plus {
        max-width: 40px;
    }
    .age-verification-content {
        padding: 30px 20px;
        margin: 15px;
    }
    .age-verification-title {
        font-size: 1.6rem;
    }
    .age-verification-text {
        font-size: 0.95rem;
    }
    .age-verification-actions {
        flex-direction: column;
        gap: 10px;
    }
    .age-verification-actions .btn {
        width: 100%;
    }
}
/*
 * Styles for the .privacyNestZone container itself
 * Provides general padding for the content within.
 */
.privacyNestZone {
    padding: 40px 20px; /* Top/bottom padding and left/right padding */
}

/*
 * Heading Styles (h1-h5)
 * Moderate font sizes with appropriate vertical spacing.
 */
.privacyNestZone h1 {
    font-size: 2em; /* Main heading, not excessively large */
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
    line-height: 1.2; /* Line height for readability */
    font-weight: bold; /* Ensure heading is bold */
}

.privacyNestZone h2 {
    font-size: 1.75em; /* Secondary heading */
    margin-top: 1.2em;
    margin-bottom: 0.7em;
    line-height: 1.3;
    font-weight: bold;
}

.privacyNestZone h3 {
    font-size: 1.5em; /* Tertiary heading */
    margin-top: 1em;
    margin-bottom: 0.6em;
    line-height: 1.4;
    font-weight: bold;
}

.privacyNestZone h4 {
    font-size: 1.25em; /* Fourth level heading */
    margin-top: 0.8em;
    margin-bottom: 0.5em;
    line-height: 1.5;
    font-weight: bold;
}

.privacyNestZone h5 {
    font-size: 1.1em; /* Fifth level heading, slightly larger than body text */
    margin-top: 0.7em;
    margin-bottom: 0.4em;
    line-height: 1.6;
    font-weight: bold;
}

/*
 * Paragraph Styles
 * Standard body text size with good line height and bottom margin.
 */
.privacyNestZone p {
    font-size: 1em; /* Standard body text size */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/*
 * List Styles (ul, ol, li)
 * Provides indentation and spacing for lists and list items.
 */
.privacyNestZone ul,
.privacyNestZone ol {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for list markers/numbers */
}

.privacyNestZone ul {
    list-style-type: disc; /* Default bullet style for unordered lists */
}

.privacyNestZone ol {
    list-style-type: decimal; /* Default number style for ordered lists */
}

.privacyNestZone li {
    margin-bottom: 0.5em; /* Space between individual list items */
    line-height: 1.5; /* Line height for list item text */
}
