/* --- Global Styles for this Page --- */
main {
    padding-top: 70px;
}

/* Page Header styles are loaded from its own component CSS file */

/* --- Enhanced Contact Details Section --- */
.contact-details-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}
.contact-details-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.contact-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #f0eefc;
    border-radius: 50%;
    margin-bottom: 20px;
}
.contact-icon i {
    font-size: 2rem;
    color: #7553DD;
}
.contact-card h3 {
    font-size: 1.5rem;
    color: #1E1E3C;
    margin: 0 0 10px 0;
}
.contact-card p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    min-height: 80px; /* To keep cards of similar height */
}
.contact-link, .contact-link-static {
    font-weight: 600;
    color: #7553DD;
    text-decoration: none;
    font-size: 1.1rem;
    word-break: break-all;
}
.contact-link:hover {
    text-decoration: underline;
}


/* Overriding the included contact section's background for this page */
main > .contact-section {
    padding-top: 0; /* Remove top padding to bring it closer */
}


/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-details-container {
        grid-template-columns: 1fr;
    }
    .contact-card p {
        min-height: 0;
    }
}
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}