/* Start custom CSS for html, class: .elementor-element-6e95e55 */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

.promo-container {
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f7ff 0%, #e0e6ff 100%);
}

.promo-card {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 39, 118, 0.15);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 39, 118, 0.2);
}

.promo-header {
    background: #002776;
    color: white;
    padding: 25px 20px;
    position: relative;
    text-align: center;
    border-bottom: 5px solid #0044cc;
}

.promo-icon {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 39, 118, 0.3);
}

.promo-icon i {
    font-size: 28px;
    color: #002776;
}

.promo-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff3a3a;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(255, 58, 58, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.promo-content {
    padding: 25px 20px;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed #e0e6ff;
    transition: transform 0.2s ease;
}

.promo-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.promo-list li:hover {
    transform: translateX(5px);
}

.promo-list li i {
    background: #e0e6ff;
    color: #002776;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.promo-list li span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.promo-footer {
    padding: 20px;
    text-align: center;
    background: #f5f7ff;
    border-top: 1px solid #e0e6ff;
}

.promo-button {
    background: #002776;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 39, 118, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-button:hover {
    background: #0044cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 39, 118, 0.4);
}

.promo-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Responsive styles */
@media (max-width: 768px) {
    .promo-header h3 {
        font-size: 20px;
    }
    
    .promo-list li span {
        font-size: 15px;
    }
    
    .promo-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .promo-header {
        padding: 20px 15px;
    }
    
    .promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .promo-icon i {
        font-size: 22px;
    }
    
    .promo-header h3 {
        font-size: 18px;
    }
    
    .promo-badge {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .promo-content {
        padding: 20px 15px;
    }
    
    .promo-list li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .promo-list li i {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .promo-list li span {
        font-size: 14px;
    }
    
    .promo-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .promo-note {
        font-size: 12px;
    }
}/* End custom CSS */