@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

:root{
    --blue: #003082;
   --gray: #767676;
   --h2_font_size : 30px;
}
 body{
    color: var(--blue);
 }

 /* Contact Form */

 .section {
    max-width: 980px;
    margin: 40px auto;
    background: #fff;   
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(80, 130, 80, 0.07);
}

.section h2 {
    color: var(--blue);
    font-size: 2.5rem;
    margin-bottom: 40px;
}


.contact-section {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 390px;
    margin: 0 auto;
}

input,
textarea {
    font-family: inherit;
    padding: 10px;
    border: 1.5px solid #bddbc8;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.2s;
}

input:focus,
textarea:focus {
    border: 1.5px solid var(--blue);
    outline: none;
}

button[type="submit"] {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 11px 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: var(--blue);
}

#formMessage {
    margin-top: 10px;
}

@media (max-width:430px){
 .section h2{
    font-size: 2rem;
    margin-bottom: 40px;
 }

}