/* Стили для блока сервиса */
.servis-section {
    padding: 40px 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.servis-wrapper {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

/* Контейнер растягиваем на весь экран */
.servis-section,
.servis-wrapper,
.servis-container {
    width: 100%;
    max-width: 100%;
}

.servis-container {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

/* Текстовая часть */
.servis-content {
    padding: 40px;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servis-text {
    color: white;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.servis-header {
    margin-bottom: 20px;
}

.servis-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.servis-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff300; /* ИЗМЕНЕНО: с #d4af37 на #fff300 */
    line-height: 1;
    text-align: center;
}

.servis-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: #cccccc;
    line-height: 1.4;
    text-align: center;
}

.servis-features {
    margin-bottom: 30px;
}

.servis-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: #e0e0e0;
    justify-content: center;
}

.servis-feature-dot {
    width: 5px;
    height: 5px;
    background: #fff300; /* ИЗМЕНЕНО: с #d4af37 на #fff300 */
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.servis-button-container {
    margin-top: 30px;
}

.servis-button {
    display: inline-block;
    background: #fff300; /* ИЗМЕНЕНО: с #d4af37 на #fff300 */
    color: #000;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #fff300; /* ИЗМЕНЕНО: с #d4af37 на #fff300 */
    transition: all 0.3s ease;
}

.servis-button:hover {
    background: transparent;
    color: #fff300; /* ИЗМЕНЕНО: с #d4af37 на #fff300 */
    transform: translateY(-2px);
}

/* Изображение */
.servis-image {
    order: 1;
    height: 300px;
    width: 100%;
}

.servis-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Десктоп */
@media (min-width: 769px) {
    .servis-section {
        padding: 40px;
    }
    
    .servis-wrapper {
        max-width: 100%;
        margin: 0 20px;
    }
    
    .servis-container {
        flex-direction: row;
        min-height: 400px;
    }
    
    .servis-content {
        order: 1;
        padding: 60px;
        flex: 1;
        text-align: left;
        justify-content: flex-start;
    }
    
    .servis-text {
        text-align: left;
    }
    
    .servis-header {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .servis-logo {
        margin-bottom: 0;
        margin-right: 20px;
        height: 60px;
        margin-left: 0;
    }
    
    .servis-title {
        font-size: 52px;
        text-align: left;
    }
    
    .servis-description {
        font-size: 20px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .servis-feature {
        justify-content: flex-start;
        text-align: left;
    }
    
    .servis-image {
        order: 2;
        height: auto;
        flex: 1;
        min-height: 400px;
    }
    
    .servis-image img {
        height: 100%;
    }
}

/* Планшеты */
@media (max-width: 768px) and (min-width: 481px) {
    .servis-content {
        padding: 50px 40px;
    }
    
    .servis-title {
        font-size: 48px;
    }
}

/* Мобильные */
@media (max-width: 480px) {
    .servis-section {
        padding: 20px 0;
    }
    
    .servis-wrapper {
        border-radius: 0;
        margin: 0;
    }
    
    .servis-content {
        padding: 30px 20px;
    }
    
    .servis-title {
        font-size: 36px;
    }
    
    .servis-description {
        font-size: 16px;
    }
    
    .servis-feature {
        font-size: 14px;
    }
    
    .servis-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Для очень широких экранов */
@media (min-width: 1600px) {
    .servis-wrapper {
        max-width: 1600px;
        margin: 0 auto;
    }
}