.odometer-section {
    padding: 60px 0;
    background: #fff4eb;
}

.odometer-header {
    margin-bottom: 15px;
}

.odometer-header h2 {
    font-family: Montserrat;
    font-weight: normal;
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    color: #003b5d;
}

.odometer-header h2 strong {
    font-weight: 700;
}

.odometer-items-section {
    margin-bottom: 20px;
}

.odometer-group {
    display: flex;
    flex-wrap: wrap;
    margin: calc(15px * -0.5);
}

.odometer-group-item {
    flex: 0 0 auto;
    width: 100%;
    padding: calc(15px * 0.5);
}

.odometer-item {
    padding: 15px 10px;
    height: 100%;
    border-radius: 10px;
    background: #003b5d;
    text-align: center;
}

.odometer-item-icon {
    margin-bottom: 8px;
}

.odometer-item-icon img {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.odometer-item-title {
    margin-bottom: 0;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 37.5px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}

.odometer-item-desc {
    margin: 0;
    padding: 0;
    font-family: Montserrat;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}

.odometer-stats-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 24px;
    border-radius: 10px;
    background-color: #fff;
}

.odometer-stats-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 17px;
    width: 100%;
}

.odometer-stats-intro-icon {
    width: 76px;
}

.odometer-stats-intro-title {
    font-family: Montserrat;
    font-weight: normal;
    font-size: 22px;
    line-height: 1.2;
    text-align: left;
    color: #003b5d;
}

.odometer-stats-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex: 1;
    margin: calc(15px * -0.5);
}

.odometer-stats-group-item {
    flex: 0 0 auto;
    width: 100%;
    padding: calc(15px * 0.5);
}

.odometer-stats-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.odometer-stats-item-heading-grp {
    display: flex;
    align-items: center;    
    justify-content: center;
    gap: 15px;
}

.odometer-stats-item-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.odometer-stats-item-content {}

.odometer-stats-item-title {
    margin-bottom: 0;
    font-family: Montserrat;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.2;
    text-align: left;
    color: #f6862a;
}

.odometer-stats-item-desc {
    margin: 0;
    padding: 0;
    font-family: Montserrat;
    font-weight: normal;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #2e3532;
}

@media (min-width: 600px) {
    .odometer-group-item {
        width: 50%;
    }

    .odometer-stats-group-item {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .odometer-header {
        margin-bottom: 30px;
    }
    
    .odometer-items-section {
        margin-bottom: 15px;
    }

    .odometer-group {
        margin: calc(30px * -0.5);
    }

    .odometer-group-item {
        padding: calc(30px * 0.5);
    }

    .odometer-stats-group-item {
        width: 33.33%;
    }
}

@media (min-width: 1024px) {
    .odometer-group-item {
        width: 33.33%;
    }
}

@media (min-width: 1200px) {
    .odometer-stats-section {
        padding-right: 80px;
        padding-left: 80px;
    }

    .odometer-stats-intro {
        width: 320px;
    }

    .odometer-group-item {
        width: 20%;
    }
}