.footer-container {
    color: #10367A;
    font-family: Arial, sans-serif;
    padding: 20px 0;
    width: 100%;
}

.footer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.footer-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000000;
}

.footer-title .highlight {
    color: #FE5716;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-icon {
    height: 64px;
    margin-bottom: 10px;
    color: #10367A;
}

.footer-icon-svg {
    margin-bottom: 10px;
}

.footer-svg {
    height: 64px;
    width: 64px;
    color: #000000;
}

.footer-block-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #10367A;
}

.footer-block-text {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
}