/* HOW WE HELP SECTION - MODERN PROFESSIONAL DESIGN */

/* Import Better Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}


/* Section Container */
.how-we-help-section {
    padding: 100px 0;
    background: radial-gradient(at 0% 0%, #f1f8e9 0px, transparent 50%), radial-gradient(at 100% 0%, #e8f5e9 0px, transparent 50%), radial-gradient(at 100% 100%, #f1f8e9 0px, transparent 50%), radial-gradient(at 0% 100%, #fff 0px, transparent 50%), #fafafa;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.4rem;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Feature Card */
.feature-card {
    background: white;
    text-align: center;
    padding: 45px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    margin-bottom: 30px;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

    .feature-card:hover {
        background: white;
        border-color: #8BC34A;
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(139, 195, 74, 0.15);
    }

/* Icon Circle */
.feature-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8F5E9 0%, #C5E1A5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.15);
}

.feature-card:hover .feature-icon-circle {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(139, 195, 74, 0.3);
}

/* Feature Title */
.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* Feature Description */
.feature-description {
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
    font-weight: 400;
}

/* Container for proper spacing */
.features-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .how-we-help-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
    }

    .feature-card {
        min-height: 350px;
        padding: 40px 25px;
    }

    .feature-icon-circle {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .feature-title {
        font-size: 1.6rem;
    }

    .feature-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .how-we-help-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.15rem;
    }

    .feature-card {
        padding: 35px 25px;
        margin-bottom: 25px;
        min-height: auto;
    }

    .feature-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
        margin-bottom: 22px;
    }

    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .feature-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .feature-card {
        padding: 30px 20px;
    }
}
