/* --- SIGNATURE CONTACT PAGE STYLES --- */
.container-mid {
    max-width: 800px;
    margin: 0 auto;
}

.contact-box {
    margin-top: 60px;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
}

.intro {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 50px;
}

.intro strong {
    color: #8b8dd6; /* Keeps your signature purple brand */
}

.email-block {
    margin-bottom: 50px;
}

.email-block span {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.email-highlight {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2e32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-highlight:hover {
    color: #8b8dd6;
}

.external-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary {
    padding: 12px 24px;
    border: 2px solid #2d2e32;
    border-radius: 8px;
    color: #2d2e32;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2d2e32;
    color: #fff;
}