:root {
    --primary-color: #2D6A4F; /* Deep Green */
    --accent-color: #52B788;  /* Light Green */
    --text-dark: #1B4332;
    --text-light: #ffffff;
    --bg-light: #F8FAF9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 40px;
    filter: brightness(0) saturate(100%) invert(21%) sepia(23%) saturate(1458%) hue-rotate(105deg) brightness(96%) contrast(92%);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    overflow: hidden;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 500px;
}

.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-link img {
    height: 48px;
    transition: transform 0.2s;
}

.store-link:hover img {
    transform: translateY(-3px);
}

/* Image/Phone Styling */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 100%;
    max-width: 5000px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .store-buttons {
        justify-content: center;
    }
}

/* Legal Pages Styling (Privacy & Terms) */
.legal-page {
    padding: 6rem 0;
    text-align: left; /* Legal text should be left-aligned for readability */
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 1rem;
}

.legal-content p, .legal-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.meta-container {
    background: #e9f5ef; /* Soft green tint */
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

/* Footer Styling */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
}

.footer-logo {
    height: 35px;
    margin-bottom: 1rem;
    /* Keeps logo white on dark background */
    filter: brightness(0) invert(1);
}

.footer-links h4, .footer-contact h4 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links a, .footer-contact a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
        grid-template-columns: 1fr;
    }
}