/* Contact Page CSS */
.contact-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.contact-hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, var(--primary-color, #6366f1) 0%, var(--secondary-color, #8b5cf6) 100%);
    border-radius: 1rem;
    color: white;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    border: 1px solid var(--border-color, #e5e7eb);
}

.contact-section h2 {
    color: var(--primary-color, #6366f1);
    margin-bottom: 1rem;
}

.contact-section p {
    line-height: 1.8;
    color: var(--text-secondary, #4b5563);
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    border: 2px solid var(--border-color, #e5e7eb);
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color, #6366f1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--text-primary, #1f2937);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--text-secondary, #6b7280);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-color, #6366f1);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.faq-item {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color, #6366f1);
}

.faq-item h3 {
    color: var(--text-primary, #1f2937);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-secondary, #4b5563);
    line-height: 1.6;
}

.response-time {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.response-time-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.response-time p {
    color: var(--text-primary, #1f2937);
    font-weight: 600;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color, #6366f1);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

ul {
    margin-left: 2rem;
    line-height: 1.8;
    color: var(--text-secondary, #4b5563);
}