.new-banner9 {
    border: 2px dashed #6c757d;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 100%;
}

.new-banner9:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #4a6cf7;
}

.new-banner9 .new-banner-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1d2144;
    font-weight: 600;
    line-height: 1.4;
}

.new-banner9 .new-banner-content {
    margin-bottom: 20px;
}

.new-banner9 .new-banner-content p {
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
}

.new-banner9 .new-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4a6cf7;
    color: white;
    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;
}

.new-banner9 .new-btn:hover {
    background-color: #6a75ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
}

/* რესპონსივობა */
@media (max-width: 768px) {
    .new-banner9 {
        padding: 20px 15px;
    }
    
    .new-banner9 .new-banner-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .new-banner9 .new-banner-content {
        margin-bottom: 18px;
    }
    
    .new-banner9 .new-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .new-banner9 {
        padding: 18px 12px;
    }
    
    .new-banner9 .new-banner-title {
        font-size: 1rem;
    }
    
    .new-banner9 .new-banner-content p {
        font-size: 0.9rem;
    }
    
    .new-banner9 .new-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}