/* Global Styles */
:root {
    --primary-color: #FF6347; /* Coral Red */
    --primary-dark: #CC4C38;
    --secondary-color: #6c757d;
    --background-light: #f8f9fa;
    --text-color: #343a40;
    --white: #ffffff;
    --light-coral-bg: #ffe0d8; /* Lighter shade of coral for sections */
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --border-color: #dee2e6;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.friend-invites {
    margin-bottom: 12px;
}

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

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

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

.text-center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

/* Responsive Typography */
@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .site-name {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    .site-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .site-name {
        font-size: .8rem !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }
    .section-description {
        font-size: 1rem;
    }
}


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

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Top Bar 18+ */
.top-bar-18plus {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

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

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

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

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

.site-name {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.nav-list {
    list-style: none;
    display: flex;
    margin-right: 20px;
    overflow-x: auto;
    white-space: nowrap;
}

.nav-list li {
    margin-left: 25px;
}

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

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

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

.burger-menu {
    display: none;
}

.burger-icon {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Mobile Navigation */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--white);
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        align-items: center;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .burger-menu {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 100px 0;
    background-image: url(graphics/pics/social-gaming-background_5.jpg); /* Macro for hero background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-features li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.hero-features .material-symbols-outlined {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.hero-btn {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
        padding: 80px 0 50px;
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-features li {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .hero-btn {
        margin-top: 30px;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.about-features .material-symbols-outlined {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.5rem;
}

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

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

.game-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

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

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

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

.game-info h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.game-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.game-info ul {
    list-style: none;
    margin-bottom: 15px;
}

.game-info ul li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.game-info ul li .material-symbols-outlined {
    font-size: 1.2rem;
    margin-right: 5px;
    color: #28a745; /* Green for checkmark */
}

.game-rating {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 15px;
}

.game-card .btn-primary {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
}

/* Responsible Gaming Section */
.responsible-gaming-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.responsible-gaming-text {
    flex: 2;
}

.responsible-gaming-text h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.responsible-gaming-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.responsible-gaming-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
}

.responsible-gaming-text ul li .material-symbols-outlined {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.5rem;
}

.responsible-gaming-image {
    flex: 1;
    min-width: 300px;
}

.responsible-gaming-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .responsible-gaming-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .responsible-gaming-image {
        margin-bottom: 30px;
    }
    .responsible-gaming-text ul {
        text-align: left;
    }
}

ul, ol, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Game Selection Criteria Section */
.selection-criteria-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.selection-criteria-image {
    flex: 1;
    min-width: 300px;
}

.selection-criteria-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.selection-criteria-text {
    flex: 2;
}

.selection-criteria-text h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

@media (max-width: 992px) {
    .selection-criteria-content {
        flex-direction: column;
        text-align: center;
    }
    .selection-criteria-image {
        margin-bottom: 30px;
    }
}

/* Statistics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.review-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

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

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

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

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

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

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

.accordion-content {
    padding: 0 20px;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content p {
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    margin: 0;
}

.accordion-content.active {
    max-height: 200px; /* Adjust based on content height */
    padding-bottom: 20px;
}

/* Contact Form Section */
.contact-content {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 40px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

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

/* Disclaimer Section */
.disclaimer-section {
    background-color: #343a40; /* Dark background for contrast */
    color: var(--white);
    padding: 60px 0;
    border-top: 5px solid var(--primary-color);
}

.disclaimer-box {
    background-color: #495057; /* Slightly lighter dark for the box */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--primary-color);
}

.disclaimer-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-title .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary-color);
}

.disclaimer-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.disclaimer-section h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

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

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

.disclaimer-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer-section a:hover {
    color: var(--white);
}

/* Footer */
.site-footer {
    background-color: #212529; /* Darker footer */
    color: #f8f9fa;
    padding: 50px 0 20px;
}

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

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

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

.footer-logo-info .site-name {
    color: var(--white);
}

.footer-18plus {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-top: 10px;
}

.footer-links, .footer-community {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-community h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-links ul, .footer-community ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a, .footer-community a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-community h4 {
    color: #ced4da;
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.footer-community ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-community .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: #adb5bd;
    margin-bottom: 20px;
}

.footer-org-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-org-logo {
    max-width: 140px;
    height: auto;
    width: 100%;
    object-fit: cover;
    display: block;
}

.footer-org-logo.no-link {
    cursor: default;
}

@media (max-width: 768px) {
    .footer-org-logos {
        gap: 8px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo-info, .footer-links, .footer-community {
        min-width: unset;
        width: 100%;
    }
    .footer-community ul {
        align-items: center;
        justify-content: center;
    }
}

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

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

.modal-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-content h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-align: center;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

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

.close-modal:hover {
    color: var(--primary-color);
}

.modal-message {
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-message.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.modal-message.pending-message {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Game Modal Specifics */
.game-modal-overlay {
    z-index: 2500;
}

.game-modal-content {
    background-color: transparent;
    padding: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: none;
    opacity: 1;
    transition: none;
}

.game-modal-overlay.active .game-modal-content {
    transform: none;
    opacity: 1;
}

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

.game-modal-close {
    z-index: 2501;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 5px;
    top: 20px;
    right: 20px;
    font-size: 2rem;
}

.game-modal-close:hover {
    background-color: var(--white);
}

/* Prevent body scroll when modal is active */
body.modal-open {
    overflow: hidden;
}
.privacyNestZone {
    /* Main container spacing */
    margin-top: 2rem; /* Top indent for the entire zone */
    padding-left: 1rem; /* Left side indent */
    padding-right: 1rem; /* Right side indent */
    max-width: 960px; /* Optional: Limit width for better readability on large screens */
    margin-left: auto; /* Center the container if max-width is set */
    margin-right: auto; /* Center the container if max-width is set */
    font-family: Arial, sans-serif; /* Optional: Default font for the zone */
    color: #333; /* Optional: Default text color */
}

.privacyNestZone h1 {
    /* Heading 1 styles */
    font-size: 1.8em; /* Moderate size, not too large */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-weight: 700; /* Bold */
}

.privacyNestZone h2 {
    /* Heading 2 styles */
    font-size: 1.6em;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    line-height: 1.2;
    font-weight: 600; /* Slightly less bold than h1 */
}

.privacyNestZone h3 {
    /* Heading 3 styles */
    font-size: 1.4em;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    line-height: 1.3;
    font-weight: 500; /* Medium bold */
}

.privacyNestZone h4 {
    /* Heading 4 styles */
    font-size: 1.2em;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-weight: 500; /* Medium bold */
}

.privacyNestZone h5 {
    /* Heading 5 styles */
    font-size: 1.1em;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    line-height: 1.4;
    font-weight: 400; /* Normal bold */
}

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

.privacyNestZone ul {
    /* Unordered list styles */
    list-style-type: disc; /* Default bullet points */
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 1.5em; /* Indent for bullet points */
}

.privacyNestZone li {
    /* List item styles */
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.5; /* Readability for list content */
}
