/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
    width: 100%;
}

/* Ensure content starts at top on this page */
.main-content {
    justify-content: flex-start;
    align-items: stretch;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-description {
    font-size: 16px;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
}

.contact-cards {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.contact-card-details {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
}

.contact-email {
    color: #007bff !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.contact-email:hover {
    color: #0056b3 !important;
    text-decoration: underline;
}

.contact-card-details a {
    color: #000000;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.2s ease;
}

.contact-card-details a:hover {
    color: #666666;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }
    
    .contact-title {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .contact-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .contact-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-card {
        min-width: auto;
        max-width: none;
        padding: 20px;
    }
    
    .contact-card-title {
        font-size: 16px;
    }
    
    .contact-card-details {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 28px;
    }
    
    .contact-cards {
        gap: 16px;
    }
    
    .contact-card {
        padding: 16px;
    }
}
