﻿/* ---------- MAIN ---------- */

.main-content {
    min-height:600px;
}



/* Background + structure */
.corp-footer {
    background: #f2f3f4;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: 40px;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* ---------- TOP SECTION ---------- */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-title-area {
    flex: 1;
}

    .footer-title-area h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .footer-title-area p {
        color: #666;
        font-size: 14px;
        margin: 0;
    }

.footer-social {
    display: flex;
    gap: 8px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        border: 2px solid #3d7385;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #3d7385;
        border-radius: 4px;
        font-size: 40px;
        transition: 0.2s;
    }

        .footer-social a:hover {
            background: #3d7385;
            color: #fff;
        }

/* ---------- NAV LINKS ---------- */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 35px 0 30px;
    font-size: 15px;
}

    .footer-links li {
        display: inline-block;
        margin: 0 20px 0 0px;
        font-weight: 700;
    }

        .footer-links li:not(:last-child)::after {
            content: "|";
            margin-left: 12px;
            color: #777;
        }

    .footer-links a {
        text-decoration: none;
        color: #3d7385;
        line-height: 26px;
    }

        .footer-links a:hover {
            text-decoration: none;
        }

/* ---------- BOTTOM SECTION ---------- */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.footer-text {
    max-width: 780px;
}

    .footer-text p {
        font-size: 13px;
        line-height: 1.55;
        color: #555;
    }

    .footer-text .copy {
        margin-top: 18px;
    }

/* LOGO */
.footer-logo img {
    width: 240px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-title-area {
        margin-left: 0;
    }

    .footer-social {
        margin-top: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-logo img {
        margin-top: 20px;
    }
}



