﻿/* Секция вариантов работы */
.work-options-section {
    /* Убираем все фоны и скругления */
    background: transparent;
    margin-top: 2rem; /* Небольшой отступ от верха */
    padding-top: 2rem;
}

    /* Убираем декоративный элемент */
    .work-options-section::before {
        display: none;
    }

.option-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 0 1rem; /* Добавляем отступ между блоками */
}

    .option-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }

.option-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.option-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

    .stars i {
        margin: 0 2px;
    }

.option-content {
    flex: 1;
    margin-bottom: 2rem;
}

    .option-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-color);
        margin-bottom: 1.5rem;
        text-align: center;
    }

.option-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .option-features li {
        display: flex;
        align-items: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid #f5f5f5;
        font-weight: 500;
        color: var(--text-color);
    }

        .option-features li:last-child {
            border-bottom: none;
        }

    .option-features i {
        color: #28a745;
        margin-right: 1rem;
        font-size: 1.1rem;
    }

.option-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.btn-option {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(109, 123, 212, 0.3);
}

    .btn-option:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(109, 123, 212, 0.4);
        color: white;
        text-decoration: none;
    }

    .btn-option i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .btn-option:hover i {
        transform: translateX(5px);
    }

