/* contact_us.css */
.contact-us-section {
    position: relative;
    height: 300px;
    background: url('/static/images/contact_banner.jpg') center center no-repeat;
    background-size: cover; /* Ensures the image covers the area, showing the center */
    padding-bottom: 20px;
}

.contact-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-button {
    padding: 15px 30px;
    background-color: #ff66b2; /* Pink button */
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-us-button:hover {
    background-color: #ff3385; /* Slightly darker pink for hover */
    text-decoration: none;
    color: white;
}
