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

:root {
    --primary-green: #064C38;
    --accent-yellow: #FDC330;
    --background-light: #F5F5F5;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(6, 76, 56, 0.1);
    --shadow-hover: 0 20px 40px rgba(6, 76, 56, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-yellow);
    color: var(--primary-green) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, #e8f5f0 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-green);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-yellow);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--accent-yellow);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.app-store-badge {
    height: 50px;
    width: auto;
}

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

.hero-phone {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
}

.hero-phone:hover {
    transform: translateY(-10px) rotate(2deg);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-yellow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: var(--background-light);
}

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

.screenshot-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.screenshot-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.screenshot-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a5d44 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-large .app-store-badge {
    height: 60px;
}

.cta-note {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-yellow);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

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

.hero-content,
.feature-card,
.screenshot-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0 100px;
    background: var(--background-light);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-method {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-method h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-email {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-email:hover {
    color: var(--accent-yellow);
}

.support-topics h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 40px;
    text-align: center;
}

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

.topic-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.topic-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.topic-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Policies Page Styles */
.policies-section {
    padding: 120px 0 100px;
    background: var(--background-light);
}

.policies-content {
    max-width: 900px;
    margin: 0 auto;
}

.policies-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-align: center;
}

.policies-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    text-align: center;
}

.policy-section {
    background: var(--white);
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.policy-section h2 {
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 30px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.policy-content {
    padding: 30px;
}

.policy-content h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.policy-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-content ul, .policy-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}

.policy-content a {
    color: var(--primary-green);
    text-decoration: none;
}

.policy-content a:hover {
    color: var(--accent-yellow);
}

.contact-highlight {
    background: var(--background-light);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid var(--accent-yellow);
}

.last-updated {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Terms and Conditions Page Styles */
.terms-section {
    padding: 120px 0 100px;
    background: var(--background-light);
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-align: center;
}

.terms-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

.terms-toc {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.terms-toc h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.terms-toc ol {
    padding-left: 20px;
}

.terms-toc li {
    margin-bottom: 8px;
}

.terms-toc a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-toc a:hover {
    color: var(--primary-green);
}

.terms-sections {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.terms-section-item {
    padding: 40px;
    border-bottom: 1px solid var(--background-light);
}

.terms-section-item:last-child {
    border-bottom: none;
}

.terms-section-item h2 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.terms-section-item h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.terms-section-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-section-item ul, .terms-section-item ol {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section-item li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}

.terms-section-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.terms-section-item a:hover {
    color: var(--accent-yellow);
}

.terms-footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.terms-footer p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .contact-info,
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content h1,
    .policies-content h1,
    .terms-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2,
    .terms-section-item h2 {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
    
    .policy-content,
    .terms-section-item {
        padding: 20px;
    }
    
    .terms-toc {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section,
    .policies-section,
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .contact-method {
        padding: 30px 20px;
    }
    
    .topic-card {
        padding: 20px 15px;
    }
} 