/* How It Works Page Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    margin-bottom: 30px;
}

.how-it-works-content {
    padding: 60px 0;
}

.how-it-works-logo {
    width: 50px;
}

/* Intro Section */
.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.intro-image img {
    width: 30%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps-section {
    margin-bottom: 80px;
}

.step {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: 40px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 168, 107, 0.3);
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-left: 60px;
}

.step p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step ul {
    margin: 20px 0 20px 40px;
    list-style: none;
}

.step ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.features-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Disclaimer Section */
.disclaimer-section {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 60px;
}

.disclaimer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #856404;
    margin-bottom: 20px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #856404;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0;
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .intro-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-number {
        position: static;
        margin: 0 auto 20px;
    }

    .step h3 {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .intro-text h2 {
        font-size: 28px;
    }

    .features-section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step {
        padding: 30px 20px;
    }

    .disclaimer-section {
        padding: 30px 20px;
    }
}