@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-Medium.woff2') format('woff2'),
         url('fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter_24pt-Light.woff2') format('woff2'),
         url('fonts/Inter_24pt-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.container {
    width: 100%;
    margin: auto;
    padding-top: 50px;
}

.logo img {
    max-width: 100%; 
    height: auto;  
}

.tagline {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 24px;
    color: #05203F;
    margin: 10px 0;
    line-height: 1;
}

.address {
    font-size: 18px;
    color: #454545;
    font-family: Inter;
}

.contact-form {
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #D7D7D7;
    border-radius: 5px;
}

.buttons {
    margin-top: 10px;
}

.send-btn {
    background-color: #001F3F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cancel-btn {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
}

.footer {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    color: #454545;
    margin-top: 20px;
}

.footer a {
    color: #454545;
}

.placeholder-font {
    font-family: Inter;
    font-size: 16px;
    color: #454545;
    font-weight: 400;
}

.contact-us {
    color: #454545;
    font-weight: 700;
    font-family: Inter;
    font-size: 20px;
    cursor: pointer;
}

.contact-us:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
        padding-top: 20px;
    }

    .tagline {
        font-size: 20px;
    }

    .address {
        font-size: 18px; 
    }

    .send-btn, .cancel-btn {
        padding: 8px 16px; 
    }

    .footer {
        font-size: 12px; 
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 18px; 
    }

    .address {
        font-size: 16px; 
    }

    .footer {
        font-size: 10px; 
    }

    .send-btn, .cancel-btn {
        padding: 6px 12px; 
    }
}