.banner {
    background-image: url('../images/aboutusbanner.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 600px;
    margin: 0;
    padding: 0;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-text h1 {
    font-size: 5vw;
    color: #A50100;
    text-transform: uppercase;
    margin: 0;
}

.banner-text p {
    font-size: 1.2vw;
    color: white;
    text-transform: uppercase;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 100px;
}

.about-us-description {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-left: 25vw;
    margin-bottom: 70px;
}

.description {
    font-size: 2vw;
    font-weight: bold;
    text-align: justify;
}

.description .highlight {
    font-size: 3vw;
}

.divider {
    height: 2px;
    width: 100%;
    justify-content: center;
    margin: 0 100px;
    background-color: black;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 25vw;
}

.about-us-content h2 {
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: 450;
    font-family: "lexend";
    margin: 0;
    margin-top: 40px;
    margin-bottom: 5px;
}


.about-us-content p {
    font-size: 1.1vw;
    text-align: justify;
    font-family: "lexend";
    margin-bottom: 40px;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 22px;
    color: #434343;
}

.get-in-touch {
    display: flex;
    align-items: center;
    justify-content: right;
    margin: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.get-in-touch a {
    text-decoration: none;
    color: black;
}

.get-in-touch a:hover {
    text-decoration: underline;
}

.get-in-touch h4 {
    font-size: 1.5vw;
    font-weight: 550;
    margin: 0;
}

.contact-section {
    padding: 3rem 1.5rem;
    background-color: #fff;
    font-family: 'josefin sans';
    color: black;
    border-top: 2px solid black;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 1rem;
    font-family: 'lexend', sans-serif;
    color: #434343;
    margin-bottom: 2rem;
}

.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'lexend';
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #f9f9f9;
    font-family: 'lexend', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #000;
    outline: none;
}

.submit-btn {
    padding: 1rem 2rem;
    border: none;
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #222;
}

.form-response {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: green;
}


@media (max-width: 1100px) {
    .banner-text h1 {
        font-size: 6vw;
    }

    .banner-text p {
        font-size: 1.5vw;
    }

    .banner {
        height: 500px;
    }

    .content {
        padding: 70px 60px 30px 60px;
    }

    .description {
        font-size: 2.3vw;
    }

    .description .highlight {
        font-size: 3vw;
    }

    .about-us-content h2 {
        margin-top: 70px;
        font-size: 2.8vw;
    }

    .about-us-content p {
        font-size: 1.5vw;
    }

    .get-in-touch h4 {
        font-size: 2.5vw;
        margin-bottom: 10px;
    }
}

@media (max-width:768px) {
    .banner-text h1 {
        font-size: 7vw;
    }

    .banner-text p {
        font-size: 2vw;
    }

    .banner {
        height: 400px;
    }

    .content {
        padding: 70px 40px 30px 40px;
    }

    .description {
        font-size: 2.5vw;
    }

    .description .highlight {
        font-size: 3vw;
    }

    .about-us-content {
        margin-right: 0px
    }

    .about-us-content h2 {
        margin-top: 70px;
        font-size: 3vw;
    }

    .about-us-content p {
        font-size: 2vw;
    }

    .get-in-touch h4 {
        font-size: 3vw;
        margin-bottom: 10px;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        width: 95%;
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .submit-btn {
        width: 100%;
        font-size: 1rem;
        padding: 0.9rem;
    }

    .contact-container {
        padding: 0 0.5rem;
    }
}