.benefits-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 0px;
}

.benefits-header {
    margin: 0 0 60px;
    text-align: center;
}

.benefits-header h2 {
    text-align: center;
    font-size: 45px;
    font-family: 'euclidcircularb-medium', Helvetica, Arial, sans-serif;
    margin-bottom: 35px;
    font-weight: 500;
}

.benefits-header .subtitle {
    color: #555;
    font-family: 'euclidcircularb-regular';
    font-size: 16px;
    font-weight: 400;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-left h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-item.active {
    border-color: #0ecc6c;
    color: #0EC76A;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
}

.benefit-icon {
    font-size: 1.2rem;
}

.benefit-body {
    margin-top: .75rem;
    font-size: .95rem;
    color: #555;
    line-height: 1.4;
    display: none;
}

.benefit-item.active .benefit-body {
    display: block;
    padding-left:38px;
}

.benefits-right img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

@media only screen and (max-width: 1440px){
    .benefits-header h2{
        font-size: 35px;
    }
    .benefits-header .subtitle{
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-header h2{
        text-align: center;
    }
    .benefits-section{
        padding: 60px 20px;
    }
    .benefits-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-header {
        justify-content: center;
    }

    .benefits-right {
        margin-top: 2rem;
    }
}
