
    .homepage-stats-links {
        padding: 60px 0;
        background-color: #f5f5f5;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .homepage-stats-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.7);
        z-index: 1;
    }

    .homepage-stats-links .container {
        position: relative;
        z-index: 2;
    }

    .hsl-header {
        text-align: center;
        margin-bottom: 40px;
        width: 800px;
        margin: 0 auto 50px;
        max-width: 100%;
    }

    .hsl-title {
        font-size: 3em;
        margin-bottom: 20px;
        color: var(--primary);
        line-height: 1;
    }

    .hsl-copy {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto;
    }

    .hsl-stat-cards {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .hsl-stat-card {
        background-color: #fff;
        padding: 40px;
        flex-basis: calc(25% - 20px);
        min-height: 250px;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .hsl-stat-title {
        font-size: 3em;
        font-weight: 900;
        color: #4B6E96;
        margin-bottom: 10px;
        margin-top: 0;
        line-height: 1;
    }

    .hsl-stat-copy {
        font-size: 1em;
        color: var(--primary);
        font-weight: 500;
        margin-bottom: 0;
    }

    .hsl-link-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hsl-link-content {
        flex-basis: 50%;
        padding-right: 40px;
    }

    .hsl-link-header {
        color: var(--primary);
        margin-bottom: 15px;
    }

    .hsl-link-copy {
        font-size: 1.1em;
        color: #666;
    }

    .hsl-links {
        flex-basis: 50%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hsl-link {
        text-align: center;
    }

    .hsl-link-title {
        font-size: 1em;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .hsl-button {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        background-color: var(--secondary);
        color: #fff;
        text-decoration: none;
        padding: 10px 20px;
        font-weight: 700;
        width: 300px;
        transition: all 0.3s ease;
        max-width: 100%;
        height: 50px;
    }

    .hsl-button:hover {
        background-color: var(--primary);
        color: white;
    }

    .hsl-button-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid #fff;
        background: white;
        margin-left: 10px;
        color: var(--secondary);
        transition: all 0.3s ease;
    }

    .hsl-button:hover .hsl-button-arrow {
        color: var(--primary);
        transform: translateX(5px);
    }

    .stat-number {
        transition: color 0.3s ease;
    }

    @media (max-width: 1199px) {
        .hsl-stat-card {
            flex-basis: calc(50% - 20px);
            min-height: initial !important;
        }

        .hsl-link-area {
            flex-direction: column;
        }

        .hsl-link-content,
        .hsl-links {
            flex-basis: 100%;
            padding-right: 0;
        }

        .hsl-link-content {
            margin-bottom: 40px;
        }

        .hsl-stat-cards {
            gap: 15px;
        }

        .hsl-title {
            font-size: 2em;
        }

        .hsl-stat-title {
            font-size: 2em;
        }
    }

    @media (max-width: 576px) {
        .hsl-stat-card {
            flex-basis: 100%;
        }

        .hsl-links {
            grid-template-columns: 1fr;
        }
    }
