/* Home Page Styles */
.main-content {
    /* Account for fixed header */
}

/* Information Section Styles */
.information-section {
    background-color: white;
    padding: 0;
}

.information-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #0057B8;
    margin: 0 0 20px 0;
    font-family: Calibri;
}

.information-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    padding: 30px;
}

.info-image {
    margin: 0 -30px 30px -30px;
    text-align: center;
    border-bottom: 1px solid #D9D9D9;
    padding: 26px 26px 46px 18px;
}

.info-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.info-content {
    text-align: left;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: Calibri;
}

.info-description {
    font-size: 16px;
    color: #000;
    margin: 0;
    line-height: 1.5;
    font-family: Calibri;
    text-align: left;
}

/* Footer Styles */
.footer {
    background-color: #0057B8;
    padding: 38px 7vw 35px;
    margin: 28px 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: Calibri;
}

.footer-button {
    flex-shrink: 0;
}

.contact-button {
    width: 180px;
    font-family: Calibri;
    padding: 12px 16px;
    background: #fff;
    color: #0057B8;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.information-video {
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .information-cards {
        flex-direction: column;
        gap: 20px;
    }

    .info-card {
        min-width: auto;
        padding: 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-description {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-text p {
        font-size: 16px;
    }

    .contact-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}
