/* Contact page specific styles */
.contact-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-detail h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.contact-card h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #666;
}

.contact-text {
    font-size: 1.1rem;
    color: #555;
}

.contact-email {
    font-weight: 600;
    color: #333;
}

.contact-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.location-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.location-card p {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-tag {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
    border: 1px solid #888;
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
} 