/* Contact Us Section */
#contact-us {
    text-align: center;
    background-color: #E5BC5D;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 100px;
}

#contact-us h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000;
}

#contact-us h3 {
    color: #000;
    font-size: 1.5rem;
}

.callback-button {
    margin: .5rem auto;
    background-color: #000;
    color: #E5BC5D;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.callback-button:hover {
    background-color: #E5BC5D;
    color: #000;
}

/* Title Styling */
.title-container {
    text-align: center;
    margin-bottom: 30px;
}


#contact-us .title {
    font-size: 3rem;
    color: black !important;
}

.line-con {
    margin-top: 10px;
}

#contact-us .line-1 {
    width: 100px;
    height: 4px;
    background-color: black !important;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 500px) {
    #contact-us {
        height: fit-content;
        padding: .3rem;
    }
}
