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

/* ---------- BODY ---------- */
body {
    background-color: #f7f7f8;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: #111827;
}

/* ---------- HEADER ---------- */
header {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------- LOGO ---------- */
#logo {
    width: 160px;
    height: auto;
    cursor: pointer;
}

/* ---------- ABOUT BUTTON (optional if added later) ---------- */
#home-button {
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    font-size: 18px;
}



/* FOOTER */
.site-footer{
    width:100%;
    text-align:center;
    padding:28px 0 20px;
}

.footer-link{
    font-size:13px;
    color:#6b7280;
    text-decoration:none;
}

/* CONTACT PAGE */
.contact-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    padding:20px;
}

.contact-card{
    width:100%;
    max-width:620px;
    background:#fff;
    padding:38px 30px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.05);
}

.contact-card h1{
    font-size:30px;
    margin-bottom:10px;
}

.contact-card p{
    color:#6b7280;
    margin-bottom:24px;
}

.contact-card form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.contact-card input,
.contact-card textarea{
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:12px;
    font-size:16px;
    width:100%;
}

@media (max-width:768px){
    .contact-card{
        padding:28px 20px;
    }

    .contact-card h1{
        font-size:26px;
    }
}