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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a2e;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

/* Index page styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a5a;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Privacy page styles */
.privacy-page {
    text-align: center;
    padding-top: 100px;
}

.privacy-page .site-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.privacy-page h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 60px;
}

.privacy-page p {
    font-size: 1.1rem;
    color: #4a4a5a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    color: #6a6a7a;
    font-size: 0.9rem;
}

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

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .phone-mockup {
        max-width: 250px;
    }

    .privacy-page {
        padding-top: 60px;
    }

    .privacy-page h1 {
        font-size: 2.2rem;
    }
}
