/* Contact Page Specific Styles */

.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/contact-banner.jpg');
    background-size: cover;
    background-position: center;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-intro h2 {
    font-size: 28px;
    color: #2a7a9e;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Contact Details Section */
.contact-details {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contact-details h2 {
    font-size: 24px;
    color: #2a7a9e;
    margin-bottom: 30px;
    text-align: center;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.method-icon {
    color: #2a7a9e;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-icon svg {
    width: 36px;
    height: 36px;
}

.method-details h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 18px;
}

.method-details p {
    margin-bottom: 5px;
}

.method-details a {
    color: #2a7a9e;
    text-decoration: none;
    font-weight: 500;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-note {
    color: #777;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Regional Offices */
.regional-offices {
    margin-bottom: 40px;
}

.regional-offices h3 {
    color: #2a7a9e;
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.office-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.office-card h4 {
    color: #2a7a9e;
    margin-bottom: 10px;
    font-size: 16px;
}

.office-card p {
    margin-bottom: 5px;
    font-size: 14px;
}

.office-email {
    margin-top: 10px;
}

.office-email a {
    color: #2a7a9e;
    text-decoration: none;
    font-weight: 500;
}

.office-email a:hover {
    text-decoration: underline;
}

/* Business Hours */
.business-hours h3 {
    color: #2a7a9e;
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
}

.business-hours > p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.hours-info {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.hours-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    flex: 1;
    min-width: 150px;
}

.hours-time {
    color: #555;
    flex: 2;
}

/* Contact Form Section */
.contact-form-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 24px;
    color: #2a7a9e;
    margin-bottom: 15px;
    text-align: center;
}

.contact-form-section > p {
    margin-bottom: 30px;
    text-align: center;
    color: #555;
}

.contact-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-