  .franchise-benefits {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .benefit-item {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .benefit-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            margin: 0 auto 20px;
            background: rgba(134, 187, 62, 0.1);
            border-radius: 50%;
        }
        
        .benefit-icon img {
            max-width: 35px;
        }
        
        .process-steps {
            position: relative;
            padding: 80px 0;
        }
        
        .process-steps:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #e5e5e5;
            transform: translateY(-50%);
            z-index: 1;
        }
        
        .step-item {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
       
        
        .why-choose-item {
            padding: 30px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .why-choose-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .franchise-form-section {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .investment-info {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
        }
        
        @media (max-width: 991px) {
            .process-steps:before {
                display: none;
            }
        }
        .modern-franchise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white-color) 100%);
    position: relative;
    overflow: hidden;
}

.modern-franchise-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(57, 49, 134, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.modern-franchise-section .section-title h2 {
    color: var(--primary-color);
}

.modern-franchise-section .section-title h2 span {
    color: var(--accent-color);
}

.modern-franchise-section .section-title .subtitle {
    font-size: 18px;
    color: var(--text-color);
    margin-top: 15px;
    font-weight: 400;
}

.modern-intro {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

.modern-points-list {
    margin-top: 30px;
}

.modern-point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 5px 15px var(--divider-color);
}

.modern-point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(57, 49, 134, 0.1);
    background: var(--white-color);
}

.point-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(93, 77, 219, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.modern-point-item:hover .point-icon {
    background: var(--accent-color);
}

.point-icon i {
    font-size: 20px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.modern-point-item:hover .point-icon i {
    color: var(--white-color);
}

.point-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.point-content p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.modern-image-box {
    position: relative;
    padding-left: 30px;
}

.modern-image-box .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--divider-color);
}

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

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white-color);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px var(--divider-color);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 16px;
}

.floating-badge span {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    background: var(--white-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--divider-color);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .modern-franchise-section {
        padding: 70px 0;
    }
    
    .modern-image-box {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .stats-container {
        padding: 15px;
    }
    
    .stat-item h4 {
        font-size: 24px;
    }
}
.modern-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white-color) 100%);
    position: relative;
    overflow: hidden;
}

.modern-benefits-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(57, 49, 134, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.modern-benefits-section .section-title h2 {
    color: var(--primary-color);
}

.modern-benefits-section .section-title h2 span {
    color: var(--accent-color);
}

.benefits-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 15px auto 50px;
}

.modern-benefit-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--white-color);
    box-shadow: 0 10px 30px var(--divider-color);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.modern-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(57, 49, 134, 0.15);
}

.modern-benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: var(--white-color);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px var(--divider-color);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-benefit-item:hover .benefit-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 36px;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.modern-benefit-item:hover .benefit-icon i {
    color: var(--white-color);
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: rgba(93, 77, 219, 0.1);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease;
}

.modern-benefit-item:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
}

.modern-benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.modern-benefit-item:hover h3 {
    color: var(--accent-color);
}

.modern-benefit-item p {
    color: var(--text-color);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.benefit-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: var(--white-color);
    border-radius: 0 0 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.modern-benefit-item:hover .benefit-hover-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.benefit-hover-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-hover-content li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.benefit-hover-content li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .modern-benefits-section {
        padding: 70px 0;
    }
    
    .modern-benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefit-icon i {
        font-size: 30px;
    }
    
    .icon-bg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767px) {
    .modern-benefit-item {
        margin-bottom: 20px;
    }
}.modern-why-choose-section {
    padding: 100px 0;
    background: var(--white-color);
    position: relative;
    overflow: hidden;
}

.modern-why-choose-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(93, 77, 219, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.modern-why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(57, 49, 134, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.modern-why-choose-section .section-title h2 {
    color: var(--primary-color);
}

.modern-why-choose-section .section-title h2 span {
    color: var(--accent-color);
}

.why-choose-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 15px auto 60px;
}

.modern-why-choose-item {
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--white-color);
    box-shadow: 0 10px 30px var(--divider-color);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.modern-why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.modern-why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(57, 49, 134, 0.15);
}

.modern-why-choose-item:hover::before {
    opacity: 1;
}

.choose-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(93, 77, 219, 0.1);
    border-radius: 18px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.modern-why-choose-item:hover .choose-icon {
    background: var(--white-color);
    transform: scale(1.1) rotate(5deg);
}

.choose-icon i {
    font-size: 30px;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.modern-why-choose-item:hover .choose-icon i {
    color: var(--accent-color);
}

.modern-why-choose-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.modern-why-choose-item:hover h3 {
    color: var(--white-color);
}

.modern-why-choose-item p {
    color: var(--text-color);
    transition: all 0.4s ease;
}

.modern-why-choose-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.choose-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(57, 49, 134, 0.05);
    line-height: 1;
    transition: all 0.4s ease;
}

.modern-why-choose-item:hover .choose-number {
    color: rgba(255, 255, 255, 0.1);
}

.btn-modern-cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(93, 77, 219, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-modern-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(93, 77, 219, 0.4);
}

.btn-modern-cta:hover::before {
    opacity: 1;
}

.btn-modern-cta i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-modern-cta:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .modern-why-choose-section {
        padding: 70px 0;
    }
    
    .modern-why-choose-item {
        padding: 30px 25px;
    }
    
    .choose-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .choose-icon i {
        font-size: 25px;
    }
    
    .choose-number {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .modern-why-choose-item {
        margin-bottom: 25px;
    }
    
    .btn-modern-cta {
        padding: 14px 30px;
    }
}
.modern-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white-color) 100%);
    position: relative;
    overflow: hidden;
}

.modern-process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(93, 77, 219, 0.1);
    transform: translateY(-50%);
    z-index: 1;
}

.modern-process-section .section-title h2 {
    color: var(--primary-color);
}

.modern-process-section .section-title h2 span {
    color: var(--accent-color);
}

.process-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 15px auto 60px;
}

.process-timeline {
    position: relative;
    padding: 40px 0;
}

.process-connector {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
}

.connector-line {
    position: absolute;
    top: 50%;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: translateY(-50%);
    border-radius: 2px;
}

.connector-dots {
    position: relative;
    width: 100%;
    height: 100%;
}

.connector-dots .dot {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--white-color);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.connector-dots .dot:nth-child(1) { left: 12%; }
.connector-dots .dot:nth-child(2) { left: 37%; }
.connector-dots .dot:nth-child(3) { left: 62%; }
.connector-dots .dot:nth-child(4) { left: 87%; }

.modern-process-item {
    text-align: center;
    padding: 30px 25px;
    border-radius: 20px;
    background: var(--white-color);
    box-shadow: 0 10px 30px var(--divider-color);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    height: 100%;
}

.modern-process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(57, 49, 134, 0.15);
}

.process-step {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: rgba(93, 77, 219, 0.1);
    z-index: 1;
}

.step-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 15px auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.modern-process-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-icon i {
    font-size: 28px;
    color: var(--white-color);
}

.modern-process-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modern-process-item p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.process-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--divider-color);
}

.process-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-details li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-details li i {
    color: var(--accent-color);
    margin-right: 8px;
    font-size: 12px;
}

.btn-process-cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(93, 77, 219, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-process-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(93, 77, 219, 0.4);
}

.btn-process-cta:hover::before {
    opacity: 1;
}

.btn-process-cta i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-process-cta:hover i {
    transform: translateX(5px);
}

.process-support-text {
    margin-top: 20px;
    color: var(--text-color);
    font-size: 16px;
}

.process-support-text i {
    color: var(--accent-color);
    margin-right: 8px;
}

.process-support-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.process-support-text a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .modern-process-section {
        padding: 70px 0;
    }
    
    .process-connector {
        display: none;
    }
    
    .modern-process-item {
        margin-bottom: 40px;
    }
    
    .process-step {
        width: 90px;
        height: 90px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .modern-process-item {
        padding: 25px 20px;
    }
    
    .btn-process-cta {
        padding: 14px 30px;
    }
}
.modern-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.modern-form-section .section-title h2 {
    color: var(--primary-color);
}

.modern-form-section .section-title h2 span {
    color: var(--accent-color);
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 40px;
}

.modern-contact-form {
    background: var(--white-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--divider-color);
}

.form-header-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-header-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--divider-color);
    z-index: 1;
}

.form-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.form-step span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.form-step p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    text-align: center;
}

.form-step.active span {
    background: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 5px 15px rgba(93, 77, 219, 0.3);
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group label i {
    margin-right: 10px;
    color: var(--accent-color);
}

.form-control {
    padding: 15px 20px;
    border: 2px solid var(--divider-color);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(93, 77, 219, 0.15);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-prev, .btn-next, .btn-submit {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-prev {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn-next, .btn-submit {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
}

.btn-prev:hover {
    background: var(--divider-color);
}

.btn-next:hover, .btn-submit:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 77, 219, 0.3);
}

.btn-prev i, .btn-next i, .btn-submit i {
    margin: 0 5px;
}

.hidden {
    display: none;
}

.modern-investment-info {
    background: var(--white-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--divider-color);
    height: 100%;
}

.info-header h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-header h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.info-header p {
    color: var(--text-color);
    margin-bottom: 30px;
}

.info-card {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 15px;
    background: var(--secondary-color);
}

.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-card-header i {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-right: 15px;
}

.info-card-header h4 {
    color: var(--primary-color);
    margin: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.info-card li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 14px;
}

.contact-support {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 25px;
    border-radius: 15px;
    color: var(--white-color);
    margin-top: 30px;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.support-icon i {
    font-size: 24px;
}

.support-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.support-content h3 {
    margin: 5px 0;
    font-size: 22px;
}

.support-content h3 a {
    color: var(--white-color);
    text-decoration: none;
}

.support-content span {
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .modern-form-section {
        padding: 70px 0;
    }
    
    .modern-investment-info {
        margin-top: 50px;
    }
    
    .form-header-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .form-header-steps::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .modern-contact-form, .modern-investment-info {
        padding: 20px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .contact-support {
        flex-direction: column;
        text-align: center;
    }
    
    .support-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}