.new-banner15 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    max-width: 100%;
}

.new-banner15::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.new-banner15:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.new-banner15 .new-banner-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.new-banner15 .new-banner-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.new-banner15 .new-banner-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.new-banner15 .new-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: white;
    color: #667eea;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.new-banner15 .new-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* რესპონსივობა */
@media (max-width: 768px) {
    .new-banner15 {
        padding: 20px 15px;
    }
    
    .new-banner15::before {
        width: 80px;
        height: 80px;
        top: -40px;
        right: -40px;
    }
    
    .new-banner15 .new-banner-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .new-banner15 .new-banner-content {
        margin-bottom: 18px;
    }
    
    .new-banner15 .new-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .new-banner15 {
        padding: 18px 12px;
    }
    
    .new-banner15::before {
        width: 60px;
        height: 60px;
        top: -30px;
        right: -30px;
    }
    
    .new-banner15 .new-banner-title {
        font-size: 1rem;
    }
    
    .new-banner15 .new-banner-content p {
        font-size: 0.9rem;
    }
    
    .new-banner15 .new-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}