<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ========================================================= */
/*                     CONTACT INTRO SECTION                 */
/* ========================================================= */

.contact-intro {
    text-align: center;
    padding: 40px 20px;
    background: #f4f4f4;
}

.contact-intro h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-intro p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================================= */
/*                   CONTACT CONTAINER SECTION               */
/* ========================================================= */

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================================= */
/*                   CONTACT INFO SECTION                    */
/* ========================================================= */

.contact-info {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
}

/* ========================================================= */
/*                     CONTACT FORM SECTION                  */
/* ========================================================= */

.contact-form {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-form h2 {
    font-size: 24px;
    color: #0056b3;
    margin-bottom: 15px;
}

/* Form Inputs */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form label {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* ========================================================= */
/*                    CTA BUTTON STYLES                      */
/* ========================================================= */

.cta-button {
    display: inline-block;
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: #004080;
}

/* ========================================================= */
/*                  MESSAGE BOX STYLES                       */
/* ========================================================= */

.message-box {
    text-align: center;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================================= */
/*                   RESPONSIVE DESIGN (MOBILE)              */
/* ========================================================= */

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info, 
    .contact-form {
        width: 100%;
    }

    .contact-form form {
        max-width: 100%;
    }
}
</pre></body></html>