.scheme-new {
    padding: 80px 0;
    background: #ededed;
    position: relative;
}

.scheme-ornament-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('/images/sign.png');
    background-repeat: repeat-x;
    background-size: auto 80px;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.scheme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    position: relative;
    z-index: 1;
}

.scheme-new .title-scheme {
    margin: 0 0 50px 0;
}

.scheme-new .title-line-scheme {
    width: 100%;
    height: 4px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.scheme-new .title-line-scheme::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15%;
    background: #FBB03B;
}

.scheme-new .title-text-scheme {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.scheme-image-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.scheme-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FBB03B 0%, #f39c12 100%);
}

.scheme-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.scheme-image-wrapper:hover .scheme-image {
    transform: scale(1.02);
}

.scheme-download {
    text-align: center;
    margin-top: 30px;
}

.scheme-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FBB03B 0%, #f39c12 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(251, 176, 59, 0.3);
}

.scheme-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 176, 59, 0.5);
    color: white;
}

.scheme-download-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: transform 0.3s ease;
}

.scheme-download-btn:hover svg {
    transform: translateY(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .scheme-new {
        padding: 50px 0;
    }
    
    .scheme-ornament-pattern {
        height: 60px;
        background-size: auto 50px;
    }
    
    .scheme-container {
        padding: 0 20px;
    }
    
    .scheme-new .title-text-scheme {
        font-size: 28px;
    }
    
    .scheme-image-wrapper {
        padding: 20px;
        border-radius: 16px;
    }
    
    .scheme-download-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
}