.results-section {
    font-family: system-ui, sans-serif;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.results-title {
    text-align: center;
    font-size: 45px;
    font-family: 'euclidcircularb-medium', Helvetica, Arial, sans-serif;
    margin-bottom: 60px;
    font-weight: 500;
}

.results-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    text-align: center;
    flex-wrap: wrap;
}

.feature {
    flex: 1 1 220px;
    max-width: 260px;
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.feature h3 {
    font-size: 18px;
    color: #00b265;
    letter-spacing: 0px;
    font-weight: 600;
}

.feature p {
    color: #70727B;
    font-family: 'euclidcircularb-regular', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* CTA box */
.cta-box {
    background: #0EC76A;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 84px 0px;
    margin-top: 4rem;
}

.cta-box h2 {
    text-align: center;
    font-size: 45px;
    font-family: 'euclidcircularb-medium', Helvetica, Arial, sans-serif;
    padding: 20px 0px;
    font-weight: 500;
    color: #fff;
}

.cta-box p {
    max-width: 600px;
    font-family: 'euclidcircularb-regular', Helvetica, Arial, sans-serif;
    margin: 0 auto 1.5rem;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background: #fff;
    font-family: 'euclidcircularb-semibold', Helvetica, Arial, sans-serif;;
    color: #00b265;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #f3f3f3;
}

@media only screen and (max-width: 1440px){
    .results-title{
        font-size: 35px;
    }
}

/* Responsive */
@media (max-width: 800px) {
    .results-section{
        padding: 40px 20px;
    }
    .results-features {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .feature {
        max-width: 300px;
    }
    .cta-box{
      padding: 20px 20px 40px;
     }
}

