/* -------------------------------------------------
   CONTACT SECTION (2026 COLOR UPDATE)
---------------------------------------------------*/
.contact-section {
    margin-top: 40px;
}

.contact-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #800000; /* Updated to Maroon */
    margin-bottom: 25px;
}

/* Contact Card */
.contact-box {
    background: #ffffff; /* White Background */
    padding: 25px 30px;
    border-radius: 6px;
    border-left: 4px solid #D4AF37; /* Updated to Soft Gold Accent */
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.contact-line {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-line a {
    color: #800000; /* Updated to Maroon */
    text-decoration: none;
    font-weight: 600;
}

.contact-line a:hover {
    color: #D4AF37; /* Updated to Soft Gold on Hover */
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 24px;
    }
    .contact-line {
        font-size: 16px;
    }
    .contact-box {
        padding: 20px;
    }
}
