.features-hero {
    background: rgb(35, 36, 57);
    background: radial-gradient(circle, rgba(35, 36, 57, 1) 3%, rgba(67, 69, 112, 1) 60%);
    padding: 100px 5%;
    text-align: center;
    color: #fff;
}

.features-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.features-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.features-section {
    padding: 80px 5%;
    background: #fff;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #232439;
}

.bg-alt {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, rgb(118, 167, 63) 0%, rgb(51, 143, 118) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #232439;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-card ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgb(118, 167, 63);
}

@media (max-width: 768px) {
    .features-hero {
        padding: 60px 20px;
    }

    .features-section {
        padding: 60px 20px;
    }

    .feature-card {
        padding: 20px;
    }
}
