﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f4f4f4;
}

.banner {
    display: flex;
    background-color: #0b2b59;
    color: white;
    padding: 40px 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.banner-text {
    max-width: 600px;
}

    .banner-text h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .banner-text p {
        font-size: 1.1rem;
    }

.banner-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #fff;
}

.card {
    background-color: #0b2b59;
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

    .card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .card:hover {
        transform: translateY(-5px);
        cursor: pointer;
    }

.cards a {
    text-decoration: none;
    color: white;
}
.info-widgets {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.provider-widget {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
    box-sizing: border-box;
}

.provider-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.provider-footer {
    background-color: #65C2BA;
    color: white;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.provider-icon {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.widget-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    z-index: 1;
}

.widget-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .widget-row.centered {
        display: flex;
        justify-content: center;
        gap: 20px;
    }


        .widget-row.centered .provider-widget[style*="span 1"] {
            width: 460px; /* 1 column */
        }

        .widget-row.centered .provider-widget[style*="span 2"] {
            width: calc((100% / 3) * 2); /* 2 columns, centered */
        }

        .widget-row.centered .provider-widget[style*="span 3"] {
            width: 100%; /* Full row */
        }

        .widget-row.centered.two-colspan-1 {
            width: calc((100% / 3) * 2 );
            margin: 0 auto;
            display: flex;
            gap: 20px;
        }
    