    #quoteBlock, #quoteBlock * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    #quoteBlock {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #fffbf0;
        border-radius: 8px;
        border: none;
        border-left: 4px solid #076B8F;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        max-width: 1700px;
        width: 100%;
        padding: 30px 35px;
        cursor: pointer;
        transition: box-shadow 0.3s ease;
        position: relative;
        margin: 20px auto;
        display: block;
    }

    #quoteBlock:hover {
        box-shadow: 0 4px 12px rgba(7, 107, 143, 0.15);
    }

    #quoteBlock .nav-area {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
        display: flex;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 10;
        margin: 0;
        padding: 0;
    }

    #quoteBlock .nav-area.left {
        left: 0;
        justify-content: flex-start;
        padding-left: 20px;
    }

    #quoteBlock .nav-area.right {
        right: 0;
        justify-content: flex-end;
        padding-right: 20px;
    }

    #quoteBlock:hover .nav-area {
        opacity: 1;
    }

    #quoteBlock .nav-arrow {
        font-size: 32px;
        color: #076B8F;
        opacity: 0.4;
        transition: opacity 0.2s ease, transform 0.2s ease;
        line-height: 1;
        margin: 0;
        padding: 0;
    }

    #quoteBlock .nav-area:hover .nav-arrow {
        opacity: 0.8;
        transform: scale(1.2);
    }

    #quoteBlock .quote-icon {
        font-size: 40px;
        color: #076B8F;
        opacity: 0.3;
        margin-bottom: 15px;
        line-height: 1;
        padding: 0;
    }

    #quoteBlock .quote-content {
        min-height: 140px;
        position: relative;
        z-index: 1;
        padding: 0;
        margin: 0;
    }

    #quoteBlock .quote-text {
        font-size: 20px;
        line-height: 1.6;
        color: #2d3748;
        margin-bottom: 20px;
        margin-top: 0;
        font-style: italic;
        animation: fadeIn 0.5s ease;
        padding: 0;
    }

    #quoteBlock .author {
        font-size: 16px;
        color: #076B8F;
        font-weight: 600;
        text-align: left;
        animation: fadeIn 0.5s ease 0.1s backwards;
        margin: 0;
        padding: 0;
    }

    #quoteBlock .author::before {
        content: '— ';
    }

    #quoteBlock .type-badge {
        display: inline-block;
        padding: 6px 14px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 500;
        margin-top: 12px;
        animation: fadeIn 0.5s ease 0.2s backwards;
        border: none;
    }

    #quoteBlock .badge-quote {
        background: #076B8F;
        color: white;
    }

    #quoteBlock .badge-fact {
        background: #d97706;
        color: white;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #quoteBlock .category {
        font-size: 11px;
        color: #076B8F;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
        margin-top: 0;
        font-weight: 600;
        animation: fadeIn 0.5s ease 0.05s backwards;
        padding: 0;
    }

    @media (max-width: 768px) {
        #quoteBlock {
            padding: 25px 20px;
        }
        
        #quoteBlock .quote-text {
            font-size: 18px;
        }
        
        #quoteBlock .author {
            font-size: 15px;
        }
    }