/* styles.css */
:root {
    --primary-color: #FFD700;
    --text-color: #333;
    --background-color: #fff;
}

* {
    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: var(--text-color);
    background-color: var(--background-color);
}

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

nav {
    padding: 1rem 2rem;
    background-color: var(--background-color);
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    min-height: 80vh;
}

.app-preview {
    flex: 1;
    max-width: 280px;
}

.phone-mockup {
    width: 100%;
    height: auto;
}

.app-info {
    flex: 1;
    max-width: 400px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.app-store-button img {
    height: 40px;
    width: auto;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #eee;
}

footer a {
    color: #666;
    text-decoration: none;
}

/* Privacy Policy Styles */
.privacy-policy {
    max-width: 800px;
    padding: 2rem;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-policy .subtitle {
    color: #666;
    margin-bottom: 2rem;
}

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

.privacy-policy h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy .note {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .app-preview, .app-info {
        max-width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }
}