/* Contact page specific styles */

.contact-content {
    max-width: 1200px;
    margin: 2rem auto 2rem 2rem;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #F1B24A;
}

.contact-content h2 {
    color: #164A41;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #F1B24A;
    padding-bottom: 0.5rem;
}

.welcome-message {
    font-size: 1.3rem;
    color: #164A41;
    background-color: #9DC88D30;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 5px solid #4D774E;
}

/* Centered Get in Touch section */
.contact-info-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 3rem 0;
}

.contact-info-card {
    background-color: #9DC88D20;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 2px solid #F1B24A;
    max-width: 600px;
    width: 100%;
}

.contact-info-card h3 {
    color: #164A41;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #F1B24A;
    padding-bottom: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background-color: #FFFFFF;
    border-radius: 60px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #4D774E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-text {
    flex: 1;
}

.info-text .label {
    font-size: 0.9rem;
    color: #666;
}

.info-text .value {
    font-size: 1.2rem;
    color: #164A41;
    font-weight: 500;
}

.info-text .value a {
    color: #164A41;
    text-decoration: none;
}

.info-text .value a:hover {
    color: #4D774E;
    text-decoration: underline;
}

.facebook-card {
    background-color: #1877f2;
    color: white;
    border-radius: 60px;
    padding: 1.2rem 2rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: transform 0.3s;
}

.facebook-card:hover {
    transform: scale(1.05);
}

.facebook-card i {
    font-size: 2.5rem;
}

.facebook-card a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Map Section */
.map-section {
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background-color: #F1B24A10;
    border-radius: 16px;
    border: 2px solid #F1B24A;
}

.map-section h3 {
    color: #164A41;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-section h3 i {
    color: #4D774E;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 3px solid #9DC88D;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.directions-link {
    text-align: center;
    margin-top: 1rem;
    color: #4D774E;
}

.directions-link a {
    color: #164A41;
    text-decoration: none;
}

.directions-link a:hover {
    text-decoration: underline;
}

.directions-link i {
    margin-right: 0.3rem;
}

/* Office hours section */
.hours-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #164A41;
    border-radius: 16px;
    color: white;
    text-align: center;
}

.hours-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F1B24A;
}

.hours-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hours-item {
    font-size: 1.1rem;
}

.hours-item span {
    color: #F1B24A;
    font-weight: 600;
}