<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Contact Page */
.contact-page { display: flex; flex-direction: column; align-items: center; 
    justify-content: center; min-height: 100vh; padding: 20px 40px; }
.contact-page .container { display: flex; flex-direction: column; align-items: center; 
    justify-content: center; max-width: 600px; width: 100%; padding: 40px; }
.contact-title { font-size: 32px; font-weight: 500; margin-bottom: 20px; text-align: center; }
.contact-form { width: 100%; display: flex; flex-direction: column; gap: 15px; }
.form-group { width: 100%; display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px; border: 1px solid #ccc; 
    border-radius: 5px; background-color: #f0f4f7; font-size: 16px; }
.contact-form textarea { height: 150px; resize: vertical; }
.contact-btn { background-color: #415d78; color: #fff; padding: 16px; border: none; border-radius: 5px; 
    font-size: 17px; cursor: pointer; width: 100%; transition: 0.3s ease; text-align: center; }
.contact-btn:hover {  background-color: #2d465a; }
/* Contact Paragraph */
.contact-paragraph {
    text-align: center;
    font-size: 18px;
    max-width: 100vw;
    margin: 0 auto 10px auto;
    line-height: 1.6;
    color: #333; 
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column; 
    width: 100%; 
}

/* .contact-column aligns its children in a single row */
.contact-column {
    display: flex;
    justify-content: center; /* Centers the columns */
    gap: 20px; /* Space between each column */
    flex-wrap: nowrap; /* Prevents wrapping */
    width: 100%;
}

.contact-social-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: nowrap; /* Prevents text wrapping */
}

.contact-social-col div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: nowrap; /* Prevents text wrapping */
}

/* Styling for the text */
.contact-social-col p {
    margin: 3px 0;
    font-size: 16px;
    color: #555;
}

/* Mobile - Up to 480px */
@media (max-width: 480px) {    
    .contact-page { padding-top: 8px 28px; }
    .contact-page .container { 
        padding: 15px; 
    }
    .contact-form input, 
    .contact-form textarea, 
    .contact-btn { 
        font-size: 14px; 
        padding: 12px; 
    }
    .contact-column {
        gap: 8px;
    }
    .contact-social-col {
        margin-bottom: 40px;
    }
    .contact-social-col p {
        font-size: 14px; /* Smaller font for mobile */
    }
}

/* Tablets - 481px to 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .contact-page {
        padding: 8px 32px;
    }
    .contact-page .container { 
        padding: 20px; 
    }
    .contact-column {
        gap: 8px;
    }
    .contact-social-col {
        margin-bottom: 40px;
    }
    .contact-social-col p {
        font-size: 14px; /* Smaller font for mobile */
    }
}

/* Laptops - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-page {
        padding: 8px 36px;
    }
    .contact-form input, 
    .contact-form textarea, 
    .contact-btn { 
        width: 100%;
    }
    .contact-column {
        gap: 15px;
    }
}

/* Desktops/Laptops - Above 1024px */
@media (min-width: 1025px) {
    .contact-page .container { 
        max-width: 600px; /* Keeping form width controlled */
    }
}
</pre></body></html>