/* What is it for Section */
.what-for {
    background: #e8e8e8;
    padding: 50px 0;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.what-for h2 {
    font-family: 'Inter', sans-serif;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #62B3AF;
    line-height: 1.3;
    font-weight: bold;
}