/* --- Contact Page Specific Styles --- */

.contact-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;

}

.contact-content h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
}

.contact-content p {
    font-size: 1.1rem;
    color: #555;
    margin: 0 auto 20px;
}

.contact-image-wrapper {
    text-align: center;
    width: 100%;
}

.contact-image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    max-width: 600px;
    margin: 10px auto;

    display: block;
}

.contact-cta .btn {
    font-size: 1.25rem;
    padding: 15px 30px;
    font-weight: bold;
    letter-spacing: 1px;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
}