/* How It Works Section Styles */
.how-it-works-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.how-it-works-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
}

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

/* The CSS looks good, but we should ensure the step-number element has proper flex alignment */

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 36px;
    height: 36px;
    background-color: #FF0000;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content {
    margin-top: 20px;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1E293B;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
}

.step-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

/* Responsive Styles for How It Works */
@media (max-width: 991px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-section {
        padding: 60px 20px;
    }
}

/* Hero Section Styles */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
}

.hero-heading {
    font-size: 48px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 20px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 32px;
}

.hero-cta-button {
    display: inline-block;
    background-color: #FF0000;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #E50000;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.features-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
    color: #FF0000;
    font-size: 32px;
}

.feature-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1E293B;
}

.feature-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.pricing-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-plan {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-plan.featured {
    border: 2px solid #FF0000;
    transform: scale(1.05);
}

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

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
}

.plan-price span {
    font-size: 16px;
    font-weight: 400;
    color: #64748B;
}

.plan-features {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
    color: #64748B;
}

.plan-button {
    display: inline-block;
    background-color: #FF0000;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: #E50000;
    transform: translateY(-2px);
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.testimonials-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 5px 0;
}

.testimonial-author-info p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1E293B;
}

.faq-description {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #F8FAFC;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 20px;
    color: #64748B;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* CTA Section Styles */
.cta-section {
    background-color: #1E293B;
    padding: 80px 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: #CBD5E1;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #FF0000;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #E50000;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer-section {
    background-color: #0F172A;
    padding: 60px 0 30px;
    color: #CBD5E1;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #CBD5E1;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FF0000;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF0000;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        flex-direction: column;
        padding: 60px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-plan.featured {
        transform: scale(1);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .hero-subheading {
        font-size: 18px;
    }
    
    .section-title,
    .features-title,
    .how-it-works-title,
    .pricing-title,
    .testimonials-title,
    .faq-title,
    .cta-title {
        font-size: 28px;
    }
}