#page-header {
    background-image: url("/img/banner/b1.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2,
#page-header p {
    color: #fff;
}

#contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details {
    width: 40%;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i {
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p {
    margin: 0;
    font-size: 14px;
}

#contact-details .map {
    width: 50%;
    height: 500px;
}

#contact-details .map iframe {
    width: 100%;
    height: 100%;
}

/* Form Details */
#form-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

#form-details form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#form-details form input,
#form-details form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 16px;
}

#form-details form button {
    background-color: #088178;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#form-details form button:hover {
    background-color: #066d5e;
}

#form-details form .re-message {
    background-color: #daf8d7;
    color: #1c7220;
    padding: 10px;
    border: 1px solid #daf8d7;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.people {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.people div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.people div img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.people div p {
    font-size: 14px;
    line-height: 1.5;
}

.people div p span {
    font-weight: bold;
    color: #333;
}

/* Responsive Design */
@media (max-width: 1099px) {
    #page-header {
        height: 35vh;
    }

    #form-details {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 799px) {
    #page-header {
        height: 30vh;
    }

    #contact-details {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #contact-details .details {
        width: 80%;
        text-align: center;
        margin-bottom: 20px;
    }

    #contact-details .map {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 477px) {
    #page-header {
        height: 25vh;
    }

    #form-details {
        padding: 15px;
    }

    #form-details form input,
    #form-details form textarea {
        font-size: 14px;
    }
}