/* Стили для Formats секции */
    .formats-section {
        width: 100%;
        padding: 100px 0;
        background: linear-gradient(135deg, 
            #ffffff 0%, 
            #f9fbfd 50%, 
            #f2f7fc 100%);
        position: relative;
        overflow: hidden;
    }

    .formats-section .container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .formats-section .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .formats-section .section-title h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: #1a2a3a;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .formats-section .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #27ae60, #2ecc71);
        border-radius: 2px;
    }

    .formats-section .section-title p {
        font-size: 1.3rem;
        color: #5a6c7d;
        max-width: 700px;
        margin: 25px auto 0;
        line-height: 1.6;
    }

    .formats-section .formats-grid {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto 50px;
        gap: 30px;
    }

    .formats-section .format-card {
        background: white;
        border-radius: 25px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 
            0 5px 20px rgba(0, 0, 0, 0.05),
            0 1px 5px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .formats-section .format-card:hover {
        transform: translateY(-10px);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(39, 174, 96, 0.1);
    }

    .formats-section .format-card-inner {
        padding: 40px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .formats-section .format-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        position: relative;
    }

    .formats-section .format-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .formats-section .format-icon i {
        font-size: 1.8rem;
        color: white;
    }

    .formats-section .format-header h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #1a2a3a;
        margin: 0;
        flex-grow: 1;
    }

    .formats-section .format-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: rgba(52, 152, 219, 0.1);
        color: #3498db;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 20px;
    }

    .formats-section .format-description {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #5a6c7d;
        margin-bottom: 30px;
    }

    .formats-section .formats-list {
        margin-bottom: 30px;
    }

    .formats-section .format-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .formats-section .format-item:last-child {
        border-bottom: none;
    }

    .formats-section .format-item:hover {
        padding-left: 10px;
    }

    .formats-section .format-item-icon {
        width: 40px;
        height: 40px;
        background: rgba(39, 174, 96, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .formats-section .format-item-icon i {
        font-size: 1.2rem;
        color: #27ae60;
    }

    .formats-section .format-item-content {
        flex-grow: 1;
    }

    .formats-section .format-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1a2a3a;
        margin-bottom: 3px;
    }

    .formats-section .format-desc {
        font-size: 0.9rem;
        color: #5a6c7d;
        line-height: 1.5;
    }

    /* Декоративные элементы */
    .formats-section .format-decor {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
        opacity: 0.1;
    }

    .formats-section .decor-1 {
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, #27ae60 0%, transparent 70%);
        top: 10%;
        left: -100px;
        animation: rotate 30s infinite linear;
    }

    .formats-section .decor-2 {
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, #3498db 0%, transparent 70%);
        bottom: 20%;
        right: -75px;
        animation: rotate 25s infinite linear reverse;
    }

    .formats-section .decor-3 {
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, #9b59b6 0%, transparent 70%);
        top: 40%;
        right: 15%;
        animation: float 20s infinite ease-in-out;
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* Анимация появления элементов */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .formats-section .format-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        animation-delay: 0.1s;
    }

    /* Адаптивность */
    @media (max-width: 1200px) {
        .formats-section .format-card-inner {
            padding: 35px 25px;
        }
    }

    @media (max-width: 992px) {
        .formats-section {
            padding: 80px 0;
        }
        
        .formats-section .section-title h2 {
            font-size: 2.4rem;
        }
        
        .formats-section .section-title p {
            font-size: 1.2rem;
        }
        
        .formats-section .formats-grid {
            max-width: 700px;
        }
    }

    @media (max-width: 768px) {
        .formats-section {
            padding: 70px 0;
        }
        
        .formats-section .section-title h2 {
            font-size: 2.2rem;
        }
        
        .formats-section .section-title p {
            font-size: 1.1rem;
        }
        
        .formats-section .format-card-inner {
            padding: 30px 25px;
        }
        
        .formats-section .format-decor {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .formats-section {
            padding: 60px 0;
        }
        
        .formats-section .section-title h2 {
            font-size: 2rem;
        }
        
        .formats-section .format-card-inner {
            padding: 25px 20px;
        }
        
        .formats-section .format-header h3 {
            font-size: 1.4rem;
        }
        
        .formats-section .format-description {
            font-size: 1rem;
        }
        
        .formats-section .format-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
            padding: 20px 0;
        }
        
        .formats-section .format-item:hover {
            padding-left: 15px;
        }
    }