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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f5f5f5;
}

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

/* Hero Section */
.hero {
    background: #f5f5f5;
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
}

.subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-badge:hover {
    transform: scale(1.02);
}

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

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

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screenshot {
    width: 280px;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 800;
}

.download p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 40px;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #4a7c23;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #4a7c23;
}

.copyright {
    color: #999;
    font-size: 14px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .phone-screenshot {
        width: 240px;
    }
}

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

    .title {
        font-size: 2rem;
    }

    .logo {
        justify-content: center;
    }

    .logo-text {
        font-size: 24px;
    }

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

    .cta-buttons {
        justify-content: center;
    }

    .why-section h2,
    .download h2 {
        font-size: 2rem;
    }
}

/* Privacy Page Styles */
.privacy-header {
    background: #f5f5f5;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.back-home {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s ease;
}

.back-home:hover {
    color: #4a7c23;
}

.privacy-content {
    background: white;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.privacy-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.privacy-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 16px;
}

.privacy-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.privacy-section ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.privacy-section li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-section ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.info-box {
    background: #f9f9f9;
    border-left: 4px solid #2d5016;
    padding: 24px;
    margin: 24px 0;
    border-radius: 4px;
}

.info-box h4 {
    color: #2d5016;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-box p {
    margin-bottom: 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.data-table th {
    background: #2d5016;
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table a {
    color: #2d5016;
    text-decoration: none;
    font-weight: 500;
}

.data-table a:hover {
    text-decoration: underline;
}

.highlight {
    background: #fff3cd;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.last-updated {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

.contact-box {
    background: #f0f7ed;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

.contact-box h3 {
    color: #2d5016;
    margin-top: 0;
}

.contact-box a {
    color: #2d5016;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
    .privacy-section h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .data-table th,
    .data-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 40px 0;
    }

    .privacy-section {
        padding: 0 16px;
    }

    .data-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
