/* styles for the contact page (contact.php) */
.page-header-section {
    background: linear-gradient(to right, #007991, #78ffd6); /* Contact page gradient */
}
.content-section {
    /* Styles for the section wrapper */
    padding-top: 4rem; /* py-16 */
    padding-bottom: 4rem; /* py-16 */
    background-color: #f0f2f5; /* bg-gray-50 equivalent */
}
.contact-content-wrapper {
    /* Styles for the inner content box */
    background-color: #ffffff; /* bg-white */
    padding: 2rem; /* p-8 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
    border: 1px solid #e2e8f0; /* border border-gray-200 */
}
