/* === General Layout === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header img {
    display: block;
    margin: 0 auto;
    max-height: 60px;
    max-width: 100%;
    height: auto;
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}
.hero-section h1,
.hero-section p {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 4em;
    margin-top: 5px;
}
.hero-section p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 3em;
    margin-top: 5px;
}

.quicklinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    margin: 0 auto;
}


.quicklink-card {
    background-color: #0089c6;
    color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 10px;
    height: 60px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}
.quicklink-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    color: #3a414a;
}
.quicklink-card a {
    text-decoration: none;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    display: block;
    width: 100%;
    text-align: center;
    transition: color 0.3s;
}
.quicklink-card:hover a {
    color: #3a414a;
}

.vertical-line {
    border-left: 2px solid #dee2e6;
    height: 100%;
    margin: 0 20px;
    display: block;
}

.footer-section {
    padding: 20px;
    text-align: center;
    background-color: #c2c7d0;
    color: #3a414a;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.footer-section h3,
.footer-section p {
    color: #3a414a;
}
.footer-section .row {
    display: flex;
    flex-wrap: wrap;
}
.footer-section .col-md-4 {
    max-width: 33.3333%;
    flex: 0 0 33.3333%;
    text-align: center;
}


/* === Mobile Adjustments === */
@media (min-width: 768px) and (max-width: 1366px) {
    .quicklinks {
        align-items: center;
    }

    .quicklink-card {
        width: 100%;
        max-width: 220px;
        margin: 0 auto 10px auto;
    }

    .vertical-line {
        display: none;
    }

    /* Only override layout in small screens */
    .col-md-1.responsive-fix,
    .col-md-10.responsive-fix {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .col-md-1.responsive-fix:first-child {
        order: 1;
    }

    .col-md-10.responsive-fix {
        order: 2;
    }

    .footer-section .col-md-4 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1.2em;
    }
}

@media (max-width: 576px) {

    .container,
    .col-md-10,
    .col-md-12,
    .col-12 {
        padding-left: 0.5px !important;
        padding-right: 0.5px !important;
        margin-left: 50 !important;
        margin-right: 50 !important;
        width: 100% !important;
    }

    .card {
        margin-left: 50 !important;
        margin-right: 50 !important;
    }

    .quicklinks {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}


