body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f7f6;
}

.home-page-container {
    width: 100%;
    overflow-x: hidden;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #4361ee;
    color: white;
    border: 2px solid #4361ee;
}

.btn-primary:hover {
    background-color: #3a56d4;
    border-color: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid #4361ee;
    color: #4361ee;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(67, 97, 238, 0.1);
    color: #3a56d4;
    border-color: #3a56d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #4361ee;
    margin: 10px auto 0;
    border-radius: 2px;
}


.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions .btn {
    margin: 0 10px;
}


.hero-actions .btn-primary,
.cta-section .btn-primary {
    background-color: white;
    color: #667eea;
    border: 1px solid white;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-actions .btn-primary:hover,
.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: #764ba2;
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.hero-actions .btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-actions .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.features-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(67, 97, 238, 0.15);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: #4361ee;
    margin-bottom: 20px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.feature-card p {
    color: #4a5568;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.btn-link {
    color: #4361ee;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: #3a56d4;
    gap: 12px;
}

.btn-link:hover i {
    transform: translateX(3px);
}


.how-it-works-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
    flex: 1;
    min-width: 240px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #4361ee;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: #4361ee;
    margin-bottom: 20px;
    margin-top: 25px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.step-card p {
    color: #4a5568;
    font-size: 0.9rem;
}


.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4361ee 0%, #3a56d4 100%);
    color: white;
    text-align: center;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 20px;
}
.cta-section .section-title::after {
    background-color: white;
}


.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: white;
    color: #4361ee;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: #f0f2ff;
    color: #3a56d4;
    border-color: #f0f2ff;
}



@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 40vh;
        padding: 30px 15px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .step-card {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    .feature-card h3 {
        font-size: 1.3rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    .feature-card {
        padding: 20px;
    }
     .feature-card .icon {
        font-size: 2rem;
    }
    .step-card {
        padding: 25px 20px;
    }
    .step-icon {
        font-size: 2.2rem;
    }
}



