:root {
    --deep-forest: #29642d;    /* Deep Forest Green - for text and accents */
    --fresh-leaf: #60b459;     /* Fresh Leaf Green - for buttons and highlights */
    --soft-mint: #d2e5c7;      /* Soft Mint Cream - for backgrounds */
    --medium-green: #3e893f;   /* Medium Green - for gradients and hover states */
    --white: #FFFFFF;
    --text-dark: #29642d;      /* Using Deep Forest for text */
    --primary: #4CAF50;
    --primary-dark: #1B4922;
    --accent: #8BC34A;
    --dark: #1B4922;
    --banner-green: #5B9A5F;  /* Slightly darker green for banner */
    --hero-green: #7AB97E;    /* Lighter green for hero section */
    --light: #FFFFFF;
    --cream: #F5F7F0;
    --gray: #F5F5F5;
    --text: #1B4922;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text);
}

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

/* Navigation */
.navbar {
    background: var(--deep-forest);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;  /* Increased padding */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;  /* Increased height */
    padding: 0 30px;  /* Added horizontal padding */
}

.navbar .logo {
    height: 90px;  /* Adjusted logo height */
    width: auto;
    display: inline-block;
    margin: 0;
    padding: 5px 0;  /* Added vertical padding */
    transition: transform 0.3s ease;
}

.navbar .logo:hover {
    transform: scale(1.02);
}

.navbar .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;  /* Increased gap between links */
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;  /* Slightly larger text */
    transition: opacity 0.3s;
}

.nav-links a:hover {
    color: var(--soft-mint);
}

.cta-button {
    background: var(--fresh-leaf);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;  /* Larger padding */
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 700;  /* Bolder text */
}

.cta-button:hover {
    background: var(--medium-green);
}

.mobile-menu-btn {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.mobile-menu-btn:hover {
    background: var(--medium-green);
}

/* Hero Section */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--medium-green) 100%);
    color: var(--white);
    min-height: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;  /* Two column layout */
    gap: 3rem;
    align-items: center;
    padding-top: 40px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    color: var(--white);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* App Icon and Preview Styling */
.hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-app-icon {
    margin: 0;
}

.app-icon {
    width: 180px;
    height: 180px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

/* App Preview */
.hero-preview {
    display: block;
    width: 125%;  /* Increased from 100% */
    max-width: 500px;  /* Increased from 400px */
    margin: 0 auto;
    transform: translateX(-10%); /* Adjust position to center the larger carousel */
}

.hero-preview .carousel-container {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.hero-preview .carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 25px; /* Slightly larger radius to match new size */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow for larger size */
}

.hero-preview .carousel-button {
    background: var(--fresh-leaf);
    color: var(--white);
    width: 36px;
    height: 36px;
    opacity: 0.9;
}

.hero-preview .carousel-button:hover {
    background: var(--medium-green);
    opacity: 1;
}

.hero-preview .carousel-dots {
    margin-top: 15px;
}

.hero-preview .carousel-dot {
    background: var(--white);
    width: 8px;
    height: 8px;
}

.hero-preview .carousel-dot.active {
    background: var(--fresh-leaf);
}

/* App Store Badge */
.app-store-badge {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.store-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-link:hover {
    transform: translateY(-2px);
}

.store-link img {
    height: auto;
    width: 200px;  /* Adjusted width */
    display: block;
}

/* Features Section */
.features {
    padding: 40px 0;
    background: var(--soft-mint);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--deep-forest);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(41, 100, 45, 0.1);
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--fresh-leaf);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    text-align: center;
    margin: 0 auto;
}

.feature-card li {
    margin-bottom: 0.5rem;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--soft-mint);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--fresh-leaf);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

/* Perfect For Section */
.perfect-for {
    padding: 80px 0;
    background: var(--soft-mint);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.audience-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: transform 0.3s;
}

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

.audience-card i {
    font-size: 2rem;
    color: var(--fresh-leaf);
    margin-bottom: 1rem;
}

.audience-card h3 {
    color: var(--deep-forest);
    margin-bottom: 1rem;
}

/* Requirements Section */
.requirements {
    padding: 80px 0;
    background: var(--white);
}

.requirements-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

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

.requirement-item i {
    font-size: 2rem;
    color: var(--fresh-leaf);
    margin-bottom: 1rem;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-forest) 0%, var(--medium-green) 100%);
    color: var(--white);
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--fresh-leaf);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: transform 0.3s;
}

.download-button:hover {
    background: var(--medium-green);
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: var(--soft-mint);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    color: var(--deep-forest);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content h2 {
    color: var(--deep-forest);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text);
    margin-bottom: 2rem;
}

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

.policy-section h2 {
    color: var(--deep-forest);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    margin-left: 1rem;
}

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

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    text-align: center;
}

/* Footer */
footer {
    background: var(--deep-forest);
    color: var(--white);
    padding: 40px 0 20px; /* Reduced padding */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* Reduced gap */
    margin-bottom: 2rem; /* Reduced margin */
}

.footer-section h3 {
    color: var(--fresh-leaf);
    margin-bottom: 1rem; /* Reduced margin */
    font-size: 1.1rem; /* Smaller font size */
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem; /* Reduced margin */
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.95rem; /* Slightly smaller font */
}

.footer-section a:hover {
    opacity: 1;
    color: var(--soft-mint);
}

.social-links {
    display: flex;
    gap: 1.2rem; /* Reduced gap */
}

.social-links a {
    font-size: 1.3rem; /* Slightly smaller icons */
    color: var(--fresh-leaf);
    margin-bottom: 0;
}

.social-links a:hover {
    color: var(--soft-mint);
}

.disclaimer {
    font-size: 0.85rem; /* Smaller text */
    opacity: 0.8;
    line-height: 1.4;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem; /* Reduced padding */
    margin-top: 1.5rem; /* Added margin */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem; /* Smaller text */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .app-icon {
        width: 300px;
        height: 300px;
    }
}

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

    .hero-preview {
        width: 100%;
        max-width: 437px; /* 350px * 1.25 */
        transform: none;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .app-icon {
        width: 140px;
        height: 140px;
    }

    .hero-preview {
        max-width: 375px; /* 300px * 1.25 */
    }

    .hero-preview .carousel-button {
        width: 40px; /* Slightly larger buttons for better touch targets */
        height: 40px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .features-grid,
    .audience-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .requirements-list {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section {
        margin-bottom: 0; /* Remove extra space between sections */
    }

    .footer-section h3 {
        margin-bottom: 0.8rem;
    }

    .footer-section a {
        margin-bottom: 0.4rem;
    }

    .disclaimer {
        max-width: 90%;
        margin: 0 auto;
    }

    .store-link img {
        width: 160px;  /* Smaller on mobile */
    }
}

/* Data Deletion Page Styles */
.policy-section h2 i {
    color: var(--fresh-leaf);
    margin-right: 0.5rem;
}

.contact-link {
    color: var(--fresh-leaf);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--medium-green);
}

.policy-link {
    display: inline-block;
    color: var(--white);
    background: var(--fresh-leaf);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.policy-link:hover {
    background: var(--medium-green);
    transform: translateY(-2px);
}

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

.policy-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
}

.policy-section ul li strong {
    color: var(--deep-forest);
}

/* Responsive adjustments for data deletion page */
@media (max-width: 768px) {
    .policy-section h2 {
        font-size: 1.3rem;
    }

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

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--soft-mint);
    text-align: center;
}

.newsletter h2 {
    color: var(--deep-forest);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 540px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subscription-form {
    width: 100%;
    height: 480px; /* Increased height to fit content */
    border: none;
    display: block;
    margin: 0 auto;
    overflow: hidden !important; /* Hide any overflow */
}

/* Responsive adjustments for newsletter */
@media (max-width: 768px) {
    .newsletter {
        padding: 60px 0;
    }

    .newsletter h2 {
        font-size: 2rem;
    }

    .newsletter-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .form-container {
        margin: 0 20px;
        padding: 15px;
    }

    .subscription-form {
        height: 520px; /* Increased height for mobile */
        overflow: hidden !important;
    }
}

/* Section Scroll Offset */
section[id] {
    scroll-margin-top: 100px; /* Adds margin for scroll positioning */
}

.section-heading {
    padding-top: 40px; /* Add some padding at the top of each section */
    margin-bottom: 2rem;
}

/* Existing section styles */
section {
    padding: 40px 0;
    position: relative;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

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

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

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

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--deep-forest);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 2;
}

.carousel-button:hover {
    opacity: 1;
}

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

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

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-green);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}

.carousel-dot.active {
    opacity: 1;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        padding: 10px 0;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
    }

    .carousel-slide {
        padding: 0 10px;
    }
} 