.contact-section{
    box-sizing:border-box;
    max-width:700px;
    margin:0 auto;
}

.contact-card{
    background:#fff;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card h2{
    margin-bottom:10px;
    font-size:32px;
}

.contact-card p{
    margin-bottom:30px;
    color:#666;
}

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

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

.form-control{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid rgba(0, 0, 0, 0.12);
    border-radius:0;
    font-size:16px;
    transition:.3s;
}

textarea.form-control{
    height:150px;
    padding:15px;
    resize:vertical;
}

.form-control:focus{
    outline:none;
    border-color:#0d6efd;
    box-shadow:0 0 0 3px rgba(13,110,253,.15);
}

.btn-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:52px;
    border:none;
    border-radius:0;
    background:#fa4f25;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-submit:hover{
    background:#301288;
    transform:translateY(-2px);
}

.btn-submit:active{
    transform:translateY(0);
}

.alert-success{
    padding:10px 20px;
    background: none;
}

.contact-page {
	padding:80px 0;
}

@media(max-width:768px){

    .contact-card{
        padding:25px;
    }

    .row{
        flex-direction:column;
        gap:0;
    }

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