.hs-60cb2111-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

@media (min-width: 992px) {
    .hs-60cb2111-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

/* Header Section */
.hs-60cb2111-header {
    flex: 1;
    max-width: 500px;
}

.hs-60cb2111-kicker {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF5E10; /* Orange */
    margin-bottom: 12px;
}

.hs-60cb2111-headline {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #021F4B; /* Deep Blue */
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hs-60cb2111-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #565872;
    margin-bottom: 30px;
}

.hs-60cb2111-btn {
    display: inline-block;
    background-color: #FF5E10; /* Orange CTA */
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 16, 0.3);
}

.hs-60cb2111-btn:hover {
    background-color: #e5540e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 16, 0.4);
    color: #FFFFFF;
}

/* Stats Grid Section */
.hs-60cb2111-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.hs-60cb2111-stat-card {
    background-color: #F0F4F9; /* Light blue/grey section bg */
    border-radius: 16px; /* Apple-style soft corners */
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(2, 31, 75, 0.05);
}

.hs-60cb2111-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(2, 31, 75, 0.08);
}

.hs-60cb2111-stat-icon {
    font-size: 2rem;
    color: #FF5E10;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-60cb2111-stat-icon svg {
    width: 2rem;
    height: 2rem;
    fill: #FF5E10;
}

.hs-60cb2111-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #021F4B;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hs-60cb2111-stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #565872;
    text-transform: uppercase;
    letter-spacing: 1px;
}