/* How It Works Page Styles */
.how-it-works-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Container */
.how-it-works-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.how-it-works-hero {
    background-color: #2A6478;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.how-it-works-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Overview */
.process-overview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-overview .how-it-works-container {
    max-width: 1350px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2A6478;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #2A6478;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(42, 100, 120, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(42, 100, 120, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2A6478;
}

.step-content p {
    font-size: 1rem;
    color: #666;
}

/* Process Details */
.process-detail-section {
    padding: 60px 0;
} 

.process-detail-section .how-it-works-container {
    max-width: 1350px;
}

.process-detail-section:nth-child(even) {
    background-color: #f9f9f9;
}

.process-detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.process-detail-content.reverse {
    flex-direction: row-reverse;
}

.process-detail-text {
    flex: 1;
}

.process-detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2A6478;
}

.process-detail-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2A6478;
    font-weight: bold;
}

.process-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-detail-image:hover {
    transform: translateY(-10px);
}

.process-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2A6478;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: #1e4a5a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 100, 120, 0.3);
}

.button-primary {
    background-color: #2A6478;
}

.button-secondary {
    background-color: transparent;
    border: 2px solid #2A6478;
    color: #2A6478;
}

.button-secondary:hover {
    background-color: #2A6478;
    color: white;
}

/* Accelerator Plan */
.accelerator-plan {
    padding: 80px 0;
    background-color: #f0f7fa;
}

.accelerator-plan .how-it-works-container {
    max-width: 1350px;
}

.accelerator-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.accelerator-text {
    flex: 1;
}

.accelerator-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: #2A6478;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.accelerator-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.accelerator-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-section .section-title {
    text-align: center;
    color: #2A6478;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

/* Fix for when Slick is initialized */
.testimonials-slider.slick-initialized {
    display: block;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: #2A6478;
    margin-bottom: 4px;
}

.author-company {
    font-size: 0.8rem;
    color: #999;
}

/* Slick navigation styling */
.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
}

.testimonials-slider .slick-prev {
    left: -50px;
}

.testimonials-slider .slick-next {
    right: -50px;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
    color: #2A6478;
    font-size: 30px;
}

.testimonials-slider .slick-dots {
    bottom: -40px;
}

.testimonials-slider .slick-dots li button:before {
    color: #2A6478;
    opacity: 0.3;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    color: #2A6478;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonials-slider:not(.slick-initialized) {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider .slick-prev {
        left: -30px;
    }
    
    .testimonials-slider .slick-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider:not(.slick-initialized) {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .testimonials-slider .slick-prev {
        left: -20px;
    }
    
    .testimonials-slider .slick-next {
        right: -20px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    color: #2A6478;
    text-align: center;
}

.cta-section .how-it-works-container {
    max-width: 1350px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .process-detail-content,
    .process-detail-content.reverse,
    .accelerator-content {
        flex-direction: column;
    }
    
    .process-detail-image,
    .accelerator-image {
        margin-top: 30px;
    }
    
    .how-it-works-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-detail-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-hero,
    .process-overview,
    .process-details,
    .accelerator-plan,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .how-it-works-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .how-it-works-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .process-detail-text h2 {
        font-size: 1.8rem;
    }
    
    .testimonial {
        flex: 0 0 300px;
    }
} 
