
.main-title {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #ffe3d8;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Вступительная секция */
.intro-section {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #cc7f32;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--dark);
    text-align: center;
    font-weight: 500;
}

/* Секции */
.section-title {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #cc7f32, #ffe3d8);
    border-radius: 3px;
}

/* Сетка преимуществ */
.advantages-section {
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.advantage-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #cc7f32, #ffe3d8);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-title {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.advantage-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Секция процесса */
.process-section {
    margin-bottom: 40px;
}

.process-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

/* Секция заказа */
.order-section {
    margin-bottom: 40px;
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-title {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Секция качества */
.quality-section {
    margin-bottom: 40px;
}

.quality-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quality-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quality-content p:last-child {
    margin-bottom: 0;
}

/* Секция дополнительных услуг */
.additional-section {
    margin-bottom: 40px;
}

.additional-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guarantee-text {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #cc7f32;
    font-weight: 500;
    color: var(--dark);
}

/* Футер */
.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.footer-text {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 25px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .main-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .advantage-item,
    .process-content,
    .quality-content,
    .additional-content {
        padding: 20px 15px;
    }
    
    .advantage-title,
    .feature-title {
        font-size: 1.2rem;
    }
}