.main-info{
    background: var(--gradient-radial);
    display: flex;
    height:530px;
    padding:8px 16px;
    align-items: center; 
    justify-content: space-between;
    gap: 60px; 
    margin-top:90px;
    margin-left: -30px;
    margin-right: -30px;
}

 .main-info-text {
    flex: 1;
    z-index: 3;
    max-width: 550px;
}

.main-info-desc {
    margin-bottom: 30px;
    max-width: 100%;
}
        
.main-info-img {
    flex: 1;
    height: 100%;
    position: relative;
}

.main-info-img img {
    position: absolute;
    bottom: -50px; 
    right: 0;      
    width: auto;
    height: 627px; 
    object-fit: contain;
    z-index: 10;
}

.main-info-title{
    margin-bottom:20px;
}

.main-info-help{
    margin-top:14px;
    margin-bottom:30px;
}
        
.main-info-help-item{
    margin-bottom:10px;
}
    
.workshop-advantages {
    padding:120px 0;
    max-width: 1340px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 14px;
    color: #8E9499; 
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2D3139;
    margin-bottom: 60px;
}

.advantages-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.advantage-card {
    flex: 1;
    padding: 40px 30px;
    background: transparent;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: default;
}

.advantage-card:hover {
    background-color: #F8F9FA; 
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background-color: #F0F2F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    color: #2D3139;
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
}

.advantage-icon svg path,
.advantage-icon svg circle,
.advantage-icon svg rect {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: #E31E24;
    color: #FFFFFF;
}

.advantage-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D3139;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-text {
    font-size: 15px;
    color: #8E9499;
    line-height: 1.5;
}

.quote-section {
    max-width: 800px;
    margin:0 auto;
    text-align: center;
    padding: 0 20px;
}

.quote-section .body-2.gray-dark {
    display: block;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: none;
    margin-bottom: 24px;
}

.quote-section p.blue-dark {
    font-size: 24px;        
    line-height: 1.4;        
    color: #2D3139;
    font-style: italic;
    margin: 0;
}

.workshop-slider-container {
    position: relative;
    margin:110px 0;
}

.workshop-slide-img {
    width: 100%;
    height: 548px;
    object-fit: cover;
    border-radius: 4px;
}

.slider-nav-box {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-arrow-btn {
    background:#F0F2F4;
    border-radius:50%;
    opacity:0.5;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.slider-arrow-btn:hover {
    background: #F0F2F4;
    color:black;
    opacity: 1;
}

.workshop-pagination.swiper-pagination-bullets {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
    position: static !important;
    width: auto !important;
}

.workshop-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #D1D5DB;
    opacity: 1;
    margin: 0 !important;
}

.workshop-pagination .swiper-pagination-bullet-active {
    background: #2D3139;
}


.contact-block{
    display:flex;
    align-items:center;
    padding-bottom:50px;
}

.contact-info {
    min-width:450px;
}

.contact-info h2.h-2 {
    margin-top:20px;
    margin-bottom:32px;
}

.contact-info h4.h-4.red {
    margin-bottom:32px;
}
.contact-info p.blue-dark {
    margin-bottom:14px;
    font-size:20px
}

.contact-info ul li.body-1.gray-dark {
    margin-bottom:10px;
}
.contact-info ul li.body-1.gray-dark a{
    text-decoration:underline;
}

.faq-button-container {
    width: 100%;
    height: 230px; 
    position: relative;
    overflow: hidden; 
    top:117px;
}

.faq-wheel-icon-container {
    width: 100%;
    height: 100%;
    position: absolute;
}

.faq-wheel-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 227px;
    height: 227px;
    transform-origin: center;
    will-change: right, transform;
}

.faq-wheel-icon {
    animation: faq-wheel-drive 5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
    animation-play-state: paused;
}

.reveal.active .faq-wheel-icon {
    animation-play-state: running;
}

.wheel-road {
    display: block;
    background: var(--gray);
    margin-top:40px;
    padding: 1px;
}

@keyframes faq-wheel-drive {
    0% {
        right: -227px;
        transform: rotate(0deg);
    }
    70% {
        right: calc(100% - 227px); 
        transform: rotate(-720deg);
    }
    100% {
        right: calc(100% - 250px);
        transform: rotate(-700deg);
    }
}

   
@media (max-width: 768px) {
    .main-info {
        margin-right:0;
        height: auto;
        gap: 30px;
        margin-top: 50px;
        padding: 40px 16px;
    }

    .main-info-img {
        top: 320px;
    }
    
    .main-info-desc {
        width: 100%;
    }

    .advantages-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantage-card {
        flex: none;
        width: 45%;
    }

    .contact-block {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-bottom:0;
    }

    .faq-button-container {
        top: 0;
        height: 250px;
        width: 100%;
    }

      .wheel-road {
        margin:0;
        
    }
    
}

@media (max-width: 480px) {
    .main-info {
        margin-left:0;
        flex-direction: column-reverse;
     
    }
    .section-title {
        font-size: 28px; 
        margin-bottom: 30px;
    }

     .main-info-img {
        height: 400px;
        top:1px;
    }
            
    .main-info-img img {
        position:static;
        height: 400px;
        max-width: 100%;
    } 

    .advantage-card {
        width: 100%;
        padding: 20px;
    }

    .workshop-slide-img {
        height: 300px;
    }

    .quote-section p.blue-dark {
        font-size: 18px;
    }

    .contact-info {
        min-width:100%;
    }
    
}