.features-section {
    background-color: #a8ff00;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 4px 4px 46px 0px rgba(0, 0, 0, 0.15);
}

.feature-card {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: center;
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.feature-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #1e1d26;
}

.feature-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}

.feature-card-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}

@media (max-width: 1024px) {
    .features-section {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }

    .feature-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 20px;
        gap: 20px;
    }

    .feature-card-icon {
        width: 60px;
        height: 60px;
    }

    .feature-card-content h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .feature-card-content p {
        font-size: 14px;
        line-height: 20px;
    }
}
