/* Statistics */
.stats-container {
    max-width: 900px;
    width: 100%;
}

.stats-container h2 {
    margin-bottom: 50px;
    color: #111;
}

/* Grid for Icons and Text */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    column-gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    align-items: center;
}

/* Icon Container */
.stat-icon {
    width: 36px;
    height: 36px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon SVG Styling */
.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: #111;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stats-description {
    max-width: 850px;
    color: #111;
}