
.hero-section {
    margin-top: 64px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    color: #1976d2;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom:0;
}




.value-props {
    background: var(--primary-color);
    padding: 50px 40px;
    color: white;
    border-radius: 16px;
    margin: 30px 0;
}

.value-props h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.value-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.value-list li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.value-list li strong {
    color: #FFF9C4;
}



.process-steps {
    margin-top: 3rem;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.step-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 18px;
    color: #1976d2;
    margin-bottom: 12px;
}

.step-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}



.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 32px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}




.team-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.team-card {
    background: #E3F2FD;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.team-card p {
    color: #0d47a1;
    margin-bottom: 8px;
}

.team-card a {
    color: #0d47a1;
    font-weight: bold;
}

.company-badge {
    display: inline-block;
    background: #FFF9E6;
    border: 2px solid #FFC107;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: #F57C00;
    margin-top: 16px;
}

@media screen and (max-width: 800px) {
    .features-grid{
        grid-template-columns: repeat(1, 1fr);
    }

    .trust-stats{
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps{
        grid-template-columns: repeat(1, 1fr);
    }

    .team-info{
        grid-template-columns: repeat(1, 1fr);
    }

    .justify-content-center{margin:0;}

    .value-props{
        padding:30px;
    }

    .value-list {
        max-width:inherit;
        margin:0;
        padding:0;
    }

    .hero-section{margin-bottom:2rem;padding:2rem 1rem;}
}