/* Contact Page Specific Styles */

.contact-page-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.page-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.page-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 176, 80, 0.1);
    color: #00B050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.contact-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #00B050;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .page-title {
        font-size: 28px;
    }
}