.hero-section {
            padding: 120px 45px;
            background: linear-gradient(135deg, #684fa3 0%, #291246 100%);
            color: white;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .intro-content {
            max-width: 1000px;
            margin: 80px auto;
            padding: 0 45px;
        }
        
        .intro-box {
            margin-bottom: 60px;
            padding: 30px 40px;
            background-color: #f4f7f9;
            border-left: 4px solid #684fa3;
        }
        
        .intro-box h3 {
            color: #291246;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .intro-box p {
            color: #7c898d;
            line-height: 1.8;
            margin: 0;
        }
        
        .phases-section {
            width: 100%;
        }
        
        .phase-wrapper {
            width: 100%;
            padding: 80px 45px;
            background-color: #f4f7f9;
            border-bottom: 1px solid #eceff1;
        }
        
        .phase-wrapper:nth-child(odd) {
            background-color: white;
        }
        
        .phase-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .phase-card {
            background: transparent;
            padding: 0;
            box-shadow: none;
            transition: none;
        }
        
        .phase-card:hover {
            transform: none;
            box-shadow: none;
        }
        
        .phase-card h2 {
            color: #684fa3;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .phase-intro {
            color: #7c898d;
            font-size: 1.1rem;
            margin-bottom: 50px;
            max-width: 100%;
            line-height: 1.8;
        }
        
        .phase-items {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        
        .phase-item {
            background: white;
            padding: 30px 40px;
            border-bottom: 1px solid #eceff1;
            border-radius: 0;
            box-shadow: none;
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }
        
        .phase-wrapper:nth-child(odd) .phase-item {
            background: #f4f7f9;
        }
        
        .phase-item:last-child {
            border-bottom: none;
        }
        
        .phase-item-number {
            flex-shrink: 0;
            color: #684fa3;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 300px;
        }
        
        .phase-item-content {
            flex: 1;
        }
        
        .phase-item strong {
            display: block;
            color: #291246;
            margin-bottom: 12px;
            font-size: 1.15rem;
            font-weight: 600;
            letter-spacing: -0.5px;
        }
        
        .phase-item p {
            color: #7c898d;
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }
        
        .divider {
            height: 1px;
            background-color: #eceff1;
            margin: 80px auto;
            max-width: 1200px;
        }
        
        .cta-section {
            background-color: #f4f7f9;
            padding: 80px 45px;
            text-align: center;
            margin-top: 80px;
        }
        
        .cta-section h2 {
            color: #291246;
            margin-bottom: 30px;
        }
        
        .btn-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        @media (max-width: 991px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .intro-content {
                padding: 0 30px;
            }
            
            .phase-wrapper {
                padding: 60px 30px;
            }
            
            .phase-item {
                padding: 25px 30px;
                gap: 20px;
            }
            
            .phase-card h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .phase-item {
                flex-direction: column;
                gap: 0;
                padding: 20px 25px;
            }
            
            .phase-item-number {
                width: 100%;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 575px) {
            .hero-section {
                padding: 60px 20px;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
            
            .intro-content {
                padding: 0 20px;
            }
            
            .phase-wrapper {
                padding: 40px 20px;
            }
            
            .phase-card h2 {
                font-size: 1.8rem;
            }
            
            .phase-item {
                padding: 15px 20px;
            }
            
            .phase-item strong {
                font-size: 1rem;
            }
            
            .phase-item p {
                font-size: 0.9rem;
            }
        }