/* Contact Page Styles */

.contact-container {
    max-width: 600px;
    margin: 6rem auto 8rem;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

.contact-info {
    text-align: center;
    background: #f8fafc;
    padding: 4rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-role {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s;
    word-break: break-all;
}

.contact-email:hover {
    opacity: 0.8;
}
