body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 600;
}

.mission-container {
    display: flex;
    gap: 100px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.app-screenshot {
    width: 22%;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.mission-text {
    width: 55%;
}

.mission-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

input, textarea {
    margin-top: 8px;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
}

button {
    background: black;
    color: white;
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    width: 150px;
    transition: 0.2s;
}

button:hover {
    background: #222;
}

.email-note {
    margin-top: 10px;
    opacity: 0.7;
}

@media (max-width: 900px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .app-screenshot {
        width: 80%;
    }

    .mission-text {
        width: 100%;
    }

    .mission-text h2 {
        font-size: 2.2rem;
    }
}

.privacy-policy {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.privacy-policy h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.privacy-policy p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.section-divider {
    border: 0;
    height: 5px;
    background: #000000;
    margin: 60px auto;      
    max-width: 800px;         
}