﻿/* Contact Us Shared Styles */
/*.contact-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid #cce7dc;
    border-radius: 0.5rem;
    background-color: #f4fdf8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-heading {
    color: #04AA6D;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 1rem;
}

.contact-link {
    color: #04AA6D;
    font-weight: 500;
    text-decoration: none;
}

    .contact-link:hover {
        text-decoration: underline;
    }*/
/* Contact Us Shared Styles */
.contact-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid #cce7dc;
    border-radius: 0.5rem;
    background-color: #f4fdf8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-heading {
    color: #04AA6D;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 1rem;
}

.contact-link {
    color: #04AA6D;
    font-weight: 500;
    text-decoration: none;
}

    .contact-link:hover {
        text-decoration: underline;
    }

/* 🔹 Reusable styles for inputs & textarea inside any .contact-container */
.contact-container label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: #333;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* 🔹 Reusable button */
.contact-container button {
    background-color: #04AA6D;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    font-weight: 600;
}

    .contact-container button:hover {
        background-color: #038857;
    }
