/* Contact Page Specific Styling */

.bodyContainer {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

section strong {
    color: #1e3a8a;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .bodyContainer {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }
}
