body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.aheader {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.aheader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aheader-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
}
.aheader-content h1 {
    font-size: 48px;
    margin: 0;
}
.aheader-content .breadcrumb {
    font-size: 14px;
    margin-top: 10px;
    display: none; /* Hide the breadcrumb */
}
.aheader-content .breadcrumb a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}
.aheader-content .breadcrumb a:hover {
    text-decoration: underline;
}
.aheader-content .bracket {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 72px;
    font-weight: bold;
}


.contaiiner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    min-height: 90vh;
    padding: 20px;
}
.contact-form, .contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    flex: 1 1 300px;
    max-width: 500px;
}
.contact-info {
    text-align: center;
}
h2 {
    margin-top: 0;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}
.form-group textarea {
    resize: vertical;
}
.btn-submit {
    background-color: #da3636;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.btn-submit:hover {
    background-color: #003366;
}
.contact-info p {
    margin: 10px 0;
}
.contact-info a {
    color: #004085;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.map-container {
    margin-top: 20px;
}
iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
}
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    margin: 0 10px;
    color: #004085;
    font-size: 24px;
    text-decoration: none;
}
.social-icons a:hover {
    color: #003366;
}
@media (max-width: 768px) {
    .contact-form, .contact-info {
        flex: 1 1 100%;
    }
}