.contact-page {

    padding: 140px 0 100px;

    background: #F8FAFC;

    min-height: calc(100vh - 180px);

}

.contact-wrapper {

    max-width: 750px;

    margin: 0 auto;

    background: white;

    padding: 50px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,.08);

}

.contact-wrapper .eyebrow {

    color: #F28C28;

    font-weight: 600;

    letter-spacing: 2px;

}

.contact-wrapper h1 {

    font-size: 3rem;

    color: #0D1B2A;

    margin: 15px 0;

}

.contact-wrapper p {

    color: #666;

    margin-bottom: 35px;

}

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 16px;

    border: 1px solid #D1D5DB;

    border-radius: 12px;

    font-family: 'Poppins', sans-serif;

    font-size: 1rem;

    transition: .3s;

}

.contact-form input:focus,
.contact-form textarea:focus {

    outline: none;

    border-color: #F28C28;

    box-shadow: 0 0 0 4px rgba(242,140,40,.15);

}

.contact-form button {

    background: #F28C28;

    color: white;

    border: none;

    padding: 18px;

    border-radius: 12px;

    font-size: 1rem;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}

.contact-form button:hover {

    opacity: .9;

    transform: translateY(-2px);

}

@media(max-width:768px){

    .contact-wrapper{

        padding:30px;

    }

    .contact-wrapper h1{

        font-size:2.2rem;

    }

}