:root{
    --cream:#f8f5ee;
    --beige:#ece3d2;
    --navy:#17324d;
    --yellow:#d9b35c;
    --white:#ffffff;
    --text:#444;
}

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

body{
    font-family:'Inter',sans-serif;
    background:var(--cream);
    color:var(--text);
    line-height:1.8;
}

section{
    padding:100px 30px;
}

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:60px 20px;
    background:linear-gradient(180deg,var(--cream),var(--beige));
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(3rem,8vw,5.5rem);
    color:var(--navy);
}

.hero h1::after{
    content:"";
    display:block;
    width:120px;
    height:4px;
    background:var(--yellow);
    margin:20px auto;
    border-radius:10px;
}

.subtitle{
    font-size:1.4rem;
    color:#666;
    font-style:italic;
}

.intro{
    margin-top:30px;
    font-size:1.15rem;
}

.mailbox-container{
    margin-top:60px;
}

.mailbox{
    width:280px;
    height:330px;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7f7f7
    );

    border-radius:25px;
    border:5px solid var(--navy);

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);
}

.mail-slot{
    width:130px;
    height:10px;
    background:var(--navy);
    position:absolute;
    top:35px;
    border-radius:10px;
}

.about,
.faq,
.founder{
    max-width:1000px;
    margin:auto;
}

h2{
    font-family:'Playfair Display',serif;
    color:var(--navy);
    margin-bottom:25px;
}

.about p,
.founder p{
    margin-bottom:20px;
}

.mission-vision{
    max-width:1000px;
    margin:auto;
    padding:40px 30px;

    display:flex;
    flex-direction:column;
    gap:25px;
}

.card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.faq-item{
    background:white;
    padding:30px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.faq-item h3{
    color:var(--navy);
    margin-bottom:10px;
}

.form-section{
    padding-bottom:120px;
}

.form-card{
    max-width:850px;
    margin:auto;
    background:white;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-card h2{
    text-align:center;
}

.form-text{
    text-align:center;
    margin-bottom:35px;
}

.form-group{
    margin-bottom:25px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

input,
textarea{
    width:100%;
    padding:15px;
    border:2px solid #ddd;
    border-radius:12px;
    font-family:inherit;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:var(--yellow);
}

button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    background:var(--navy);
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
}

.success-message{
    display:none;
    margin-top:30px;
    padding:25px;
    background:#f4f9f4;
    border-left:5px solid #4caf50;
    border-radius:12px;
    text-align:center;
}

footer{
    background:var(--navy);
    color:white;
    text-align:center;
    padding:50px 20px;
}

.scroll-indicator{
    margin-top:50px;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;

    color:var(--navy);
    font-size:.95rem;
    font-weight:500;

    animation:float 2s ease-in-out infinite;
}

.scroll-indicator svg{
    width:28px;
    height:28px;
}

.content-section{
    max-width:1000px;
    margin:auto;
    padding:40px 30px;
}

.content-card{
    background:white;

    padding:50px;

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.content-card h2{
    margin-bottom:25px;
}

.content-card p{
    margin-bottom:18px;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(8px);
    }

    100%{
        transform:translateY(0);
    }

}

@media(max-width:768px){

    section{
        padding:70px 25px;
    }

    .mailbox{
        width:220px;
        height:260px;
    }

    .form-card{
        padding:30px;
    }
}