.features {
        padding: 70px 20px;
        background: #ffffff;
        position: relative;
    }

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        z-index: 1;
    }    .features-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .features .features-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .features .features-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .features .features-subtitle {
        font-size: 1.2rem;
        color: #6c757d;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .features .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-bottom: 80px;
    }

    .features .feature-card {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #f1f3f4;
        position: relative;
        overflow: hidden;
    }

    .features .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #28a745, #20c997);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .features .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .features .feature-card:hover::before {
        transform: scaleX(1);
    }    .features .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #28a745, #20c997);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .features .feature-icon i {
        font-size: 2.2rem;
        color: white;
    }

    .features .feature-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #212529;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .features .feature-description {
        font-size: 1rem;
        color: #6c757d;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .features .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .features .feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
        font-size: 0.95rem;
        color: #495057;
    }

    .features .feature-list li:last-child {
        margin-bottom: 0;
    }

    .features .feature-list i {
        font-size: 0.9rem;
        color: #28a745;
        background: rgba(40, 167, 69, 0.1);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }    .features .features-cta {
        text-align: center;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 60px 40px;
        border-radius: 25px;
        border: 1px solid #dee2e6;
    }

    .features .features-cta h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #212529;
        margin-bottom: 15px;
    }

    .features .features-cta p {
        font-size: 1.1rem;
        color: #6c757d;
        margin-bottom: 30px;
    }

    .features .features-btn {
        background: linear-gradient(135deg, #28a745, #20c997);
        color: white;
        padding: 18px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
        display: inline-block;
    }

    .features .features-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
    }

    @media (max-width: 768px) {
        .features {
            padding: 80px 20px;
        }        .features .features-header {
            margin-bottom: 60px;
        }

        .features .features-title {
            font-size: 2rem;
        }

        .features .features-subtitle {
            font-size: 1.1rem;
        }

        .features .features-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }

        .features .feature-card {
            padding: 30px 25px;
        }

        .features .feature-icon {
            width: 70px;
            height: 70px;
        }

        .features .feature-icon i {
            font-size: 2rem;
        }

        .features .feature-title {
            font-size: 1.3rem;
        }

        .features .features-cta {
            padding: 40px 30px;
        }

        .features .features-cta h3 {
            font-size: 1.6rem;
        }

        .features .features-btn {
            padding: 16px 32px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {        .features {
            padding: 60px 20px;
        }

        .features .features-title {
            font-size: 1.8rem;
        }

        .features .feature-card {
            padding: 25px 20px;
        }

        .features .features-cta {
            padding: 30px 20px;
        }

        .features .features-cta h3 {
            font-size: 1.4rem;
        }

        .features .features-btn {
            width: 100%;
            max-width: 300px;
        }
    }