
.features-container {
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 10rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.feature-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.icon-wrapper {
    background-color: #c4f3d4;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
} 

h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: -8px;
}

p {
    font-size: 14px;
    line-height: 1.5;
    color: #6B7280;
}
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}
