/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Updated color palette */
:root {
    --primary-color: #FFFFFF; /* Primary */
    --primary-accent: #01362E; /* Primary Accent */
    --primary-accent-2: #01362E; /* Primary Accent 2 */
    --secondary-color: #FFFFFF; /* Secondary */
    --secondary-bg: #DCEAF7; /* Secondary background */
    --solid-accent: #01362E; /* Solid Accent */
    --solid-accent-low: #C7ECD5; /* Solid Accent Low */
    --border-color: #D6D6D6; /* Border */
    --warning-color: #FA7376; /* Warning */
    --primary-text: #01362E; /* Primary Text */
    --secondary-text: #232323; /* Secondary Text */
    --white: #FFFFFF;
    --max-width: 1200px;
    --section-padding: 6rem 0;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body {
    background: var(--primary-color);
    font-family: 'Poppins', 'Segoe UI', 'Inter', Arial, sans-serif;
    color: var(--primary-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
header {
    background: var(--primary-color);
    box-shadow: 0 2px 10px var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00D850;
}

.logo h1 a {
    text-decoration: none;
    color: #00D850;
    transition: color 0.3s ease;
}

.logo h1 a:hover {
    color: var(--primary-accent-2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-accent-2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-accent-2);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
main {
    margin-top: 80px; /* Height of fixed header */
}

/* Hero Section */
.custom-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 48vh;
    padding: 3.5rem 1rem 1.5rem 1rem;
    background: var(--primary-color);
    overflow: hidden;
}

.custom-hero-shape {
    position: absolute;
    right: -120px;
    top: 30px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 60% 40%, #00D85022 0%, #19B65E11 80%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}


/* Extra small circle for more depth */
.custom-hero .custom-hero-extra {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 10vw;
    top: 30vh;
    background: radial-gradient(circle, var(--solid-accent-low) 60%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(1px);
}

.custom-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

.custom-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-accent-2);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.custom-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-text);
    margin-bottom: 2.2rem;
    line-height: 1.5;
}

.custom-btn {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    background: var(--primary-accent-2);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.custom-btn-primary:hover {
    background: var(--primary-accent);
    color: var(--primary-color);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.03);
}

.custom-features {
    background: var(--primary-color);
    padding: 4rem 1rem 6rem 1rem;
    text-align: center;
}

.custom-features h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-accent-2);
    margin-bottom: 2.5rem;
}

 .custom-feature-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 2rem;
     max-width: var(--max-width);
     margin: 0 auto;
 }

 @media (max-width: 1024px) {
     .custom-feature-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }
 
 @media (max-width: 600px) {
     .custom-feature-grid {
         grid-template-columns: 1fr;
     }
 }

.custom-feature-card {
    background: var(--secondary-bg);
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid var(--border-color);
    color: var(--primary-text);
}

.custom-feature-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.04);
    border-color: var(--primary-accent-2);
}

.custom-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--solid-accent);
    background: var(--solid-accent-low);
}

.custom-feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-accent-2);
}

.custom-feature-card p {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .custom-hero {
        padding: 3rem 1rem 2rem 1rem;
        min-height: 40vh;
    }
    .custom-hero-content h1 {
        font-size: 2rem;
    }
    .custom-features h2 {
        font-size: 1.5rem;
    }
    .custom-feature-card {
        padding: 1.2rem 0.8rem;
    }
    .custom-hero-shape {
        width: 220px;
        height: 220px;
        right: -60px;
        top: 10px;
    }
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--secondary-color);
}

.feature-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--primary-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-accent-2);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-accent);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modern Footer Styles */
footer {
    background: linear-gradient(90deg, var(--primary-accent-2) 0%, var(--primary-accent) 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: none;
    overflow: hidden;
}
.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    z-index: 1;
    position: relative;
}
.footer-section h3 {
    color: var(--primary-accent-2);
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-section p,
.footer-section a {
    color: var(--white);
    transition: color 0.2s ease, text-decoration 0.2s ease;
    text-decoration: none;
}
.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
}

/* Two-column layout for quick links */
.footer-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    text-decoration: none;
    font-size: 0.95rem;
}
.footer-bottom {
    background: transparent;
    color: var(--white);
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--border-color);
}
.footer-bottom p {
    color: var(--primary-text);
    font-weight: 500;
}
.footer-decor {
    background: var(--primary-color);
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 0 40px 10px var(--primary-accent-2);
}
/* Remove old color overrides for footer */
.footer-section h3,
.footer-section p,
.footer-section a,
.footer-bottom,
.footer-bottom p {
    color: unset;
}
/* Footer Top Wave Divider */
.footer-wave-divider {
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 2;
}
.footer-wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    nav {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none; /* Hide by default on mobile */
        position: absolute;
        top: 80px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background: var(--primary-color);
        box-shadow: 0 2px 10px var(--border-color);
        padding: 1rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1000;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .feature-grid {
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-card i {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .feature-card {
    animation: fadeIn 1s ease-out;
}

/* Features Page Styles */
.features-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-bg) 0%, #c3cfe2 100%);
    text-align: center;
}

.features-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.features-hero p {
    font-size: 1.2rem;
    color: var(--primary-text);
    max-width: 600px;
    margin: 0 auto;
}

.feature-details {
    padding: 5rem 0;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse .feature-content {
    direction: ltr;
}

.feature-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary-text);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .features-hero h1 {
        font-size: 2.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--secondary-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--primary-text);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--primary-text);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form h2,
.contact-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: var(--primary-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent-2);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

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

.submit-btn {
    background: var(--primary-accent-2);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-accent);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

.contact-section-modern {
    background: var(--primary-color);
    padding: 4rem 1rem 6rem 1rem;
}

.contact-container-modern {
    display: flex;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form-modern {
    flex: 1 1 320px;
    background: var(--primary-color);
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 280px;
}

.contact-form-modern h2 {
    color: var(--primary-accent-2);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #E1EEBC;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fa;
    resize: none;
    color: var(--primary-text);
}

.contact-form-modern textarea {
    min-height: 100px;
}

.contact-form-modern button {
    margin-top: 0.5rem;
}

.contact-info-modern {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 220px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--primary-color);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1.2rem 1rem;
    border: 1px solid #E1EEBC;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--solid-accent);
    background: #E1EEBC;
    flex-shrink: 0;
}

.contact-info-card h3 {
    margin: 0 0 0.2rem 0;
    color: var(--primary-accent-2);
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-info-card p {
    margin: 0;
    color: var(--secondary-text);
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .contact-container-modern {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
    }
} 

/* Decorative SVG Blob Styles */
.decorative-blob {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    filter: blur(1px);
    animation: floatBlob 8s ease-in-out infinite;
}
.blob-top-left {
    top: -60px;
    left: -80px;
    width: 220px;
    height: 180px;
}

/* Floating Circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    animation: floatCircle 6s ease-in-out infinite alternate;
}
.circle-bottom-right {
    width: 100px;
    height: 100px;
    right: 2vw;
    bottom: -40px;
    background: radial-gradient(circle, #01362E33 60%, transparent 100%);
}
.circle-top-right {
    width: 60px;
    height: 60px;
    right: 8vw;
    top: -30px;
    background: radial-gradient(circle, #01362E33 60%, transparent 100%);
}

/* Wave Divider */
.wave-divider {
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    position: relative;
    margin-top: -2rem;
    z-index: 1;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Gradient Button */
.custom-btn.custom-btn-primary {
    background: linear-gradient(90deg, var(--primary-accent-2) 0%, var(--primary-accent) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.custom-btn.custom-btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-accent) 0%, var(--primary-accent-2) 100%);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px) scale(1.04);
}

/* Floating Animation */
@keyframes floatBlob {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes floatCircle {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-12px) scale(1.03); }
}

/* Child Safety Page Styles */
.content-section {
    padding: 4rem 0 2rem;
    background: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--solid-accent-low);
}

.policy-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent-2);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--secondary-text);
    font-size: 1rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-accent-2);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--solid-accent-low);
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-text);
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: var(--primary-accent-2);
    font-weight: 600;
}

.feature-list {
    display: grid;
    gap: 2rem;
    margin: 1.5rem 0;
}

.feature-item {
    background: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-accent-2);
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-accent-2);
    margin-bottom: 1rem;
}

.feature-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.feature-item li {
    margin-bottom: 0.3rem;
}

.contact-info {
    background: var(--solid-accent-low);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

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

.report-contact {
    background: var(--warning-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: center;
}

.report-contact p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.report-contact a {
    color: var(--white);
    text-decoration: underline;
}

.report-contact a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    /* Mobile-specific container improvements */
    .container {
        max-width: 100%;
        padding: 0 0.5rem;
        margin: 0;
    }
    
    /* Enhanced mobile content section */
    .content-section {
        padding: 1rem 0;
        margin: 0;
    }
    
    /* Improved policy content for mobile */
    .policy-content {
        padding: 0.5rem 0.5rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }
    
    .policy-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .policy-section h3 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .policy-section ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }
    
    .policy-section li {
        margin-bottom: 0.8rem;
    }
    
    .feature-list {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .feature-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-item h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .contact-info p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .report-contact {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .report-contact p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    /* Enhanced terms content for mobile */
    #termsContent {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    #termsContent h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
    
    #termsContent h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    #termsContent h3 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    #termsContent p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    #termsContent ul, #termsContent ol {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }
    
    #termsContent li {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
    
    #termsContent blockquote {
        padding: 1.5rem;
        margin: 1.5rem 0;
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    #termsContent code {
        font-size: 0.95rem;
        padding: 0.3rem 0.5rem;
    }
    
    #termsContent pre {
        padding: 1.5rem;
        margin: 1.5rem 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    #termsContent table {
        font-size: 0.95rem;
        margin: 1.5rem 0;
    }
    
    #termsContent th, #termsContent td {
        padding: 0.8rem 0.5rem;
    }
}

/* Terms Page Specific Styles */
#termsContent {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--primary-text);
}

#termsContent h1, #termsContent h2, #termsContent h3, #termsContent h4, #termsContent h5, #termsContent h6 {
    color: var(--primary-accent-2);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#termsContent h1 {
    font-size: 2rem;
    border-bottom: 2px solid var(--solid-accent-low);
    padding-bottom: 0.5rem;
}

#termsContent h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--solid-accent-low);
    padding-bottom: 0.3rem;
}

#termsContent h3 {
    font-size: 1.3rem;
}

#termsContent p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#termsContent ul, #termsContent ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

#termsContent li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

#termsContent strong {
    color: var(--primary-accent-2);
    font-weight: 600;
}

#termsContent a {
    color: var(--primary-accent-2);
    text-decoration: underline;
}

#termsContent a:hover {
    text-decoration: none;
}

#termsContent blockquote {
    border-left: 4px solid var(--primary-accent-2);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    background: var(--solid-accent-low);
    padding: 1rem;
    border-radius: var(--border-radius);
}

#termsContent code {
    background: var(--secondary-bg);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Fira Mono', monospace;
    font-size: 0.9rem;
}

#termsContent pre {
    background: var(--secondary-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: 1rem 0;
}

#termsContent table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

#termsContent th, #termsContent td {
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    text-align: left;
}

#termsContent th {
    background: var(--solid-accent-low);
    font-weight: 600;
    color: var(--primary-accent-2);
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 0.3rem;
    }
    
    .policy-content {
        padding: 0.3rem 0.3rem;
    }
    
    .policy-header h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    #termsContent h1 {
        font-size: 1.6rem;
    }
    
    #termsContent h2 {
        font-size: 1.4rem;
    }
    
    #termsContent h3 {
        font-size: 1.2rem;
    }
    
    #termsContent p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    #termsContent li {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .feature-item {
        padding: 1.2rem;
    }
    
    .contact-info,
    .report-contact {
        padding: 1.2rem;
    }
} 

/* App Screenshots Carousel */
.app-screenshots-carousel {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

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

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background: #00D850;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
        margin: 0 !important;
    }

    .carousel-track {
        gap: 0;
    }

    .app-screenshot {
        width: 100%;
        height: auto;
        display: block;
    }
} 

/* Disclaimer Banner */
.disclaimer-section {
    padding: 1rem 0 0;
    background: transparent;
}

.disclaimer-banner {
    background: #FFF5F5;
    color: var(--primary-text);
    padding: 0.9rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-banner strong {
    color: var(--warning-color);
} 