body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
}

.main-container {
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.top-banner, .footer {
    background-color: #2C4280;
    color: white;
    padding: 30px;
}

    .top-banner .header-text {
        font-size: 30px;
        font-weight: 600;
    }

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    flex-wrap: wrap;
}

    .footer .footer-text a {
        font-size: 18px;
        font-weight: 600;
    }

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.main-content, .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    align-items: center;
    width: 100%;
    height: 100%;
}

    .main-content .logo-container {
        text-align: center;
    }

    .main-content .action-buttons {
        text-align: center;
    }

    .contact-content .logo-container {
        text-align: center;
    }

    .contact-content .contact-form {
        width: 75%;
    }

    .main-content img,
    .contact-content img {
        max-width: 400px;
    }

.action-buttons {
    display: flex; /* Important to arrange buttons side by side */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 30px;
    padding: 20px 0;
}

    .action-buttons .btn {
        margin: 0;
        padding: 10px 20px;
        width: 220px;
        text-align: center;
        font-size: 22px;
        border-radius: 8px;
        background-color: #FFA726;
        color: white;
        border: none;
        display: inline-block; /* Needed so width applies */
        text-decoration: none; /* Optional: removes underline on <a> */
    }

        .action-buttons .btn:hover {
            background-color: #fb8c00;
        }

.footer a {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .main-content, .contact-content {
        grid-template-columns: 1fr;
        padding: 0 30px;
        width: unset;
    }

        .contact-content .contact-form {
            width: unset;
        }

        .main-content .logo-container,
        .contact-content .logo-container,
        .action-buttons {
            text-align: center;
        }

            .action-buttons .btn {
                width: 100%;
            }
}
