/* Heading styles */
h4 {
    font-weight: bold;
}

/* Info boxes styling */
.info-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.info-box i {
    font-size: 1.2em;
    color: #70c4c0;
}

.pdf-btn {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.promo-box {
    background-color: #FFE900 !important;
    color: #333;
    font-weight: bold;
}

/* Promo Banner Styles */
.promo-banner {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.promo-banner .alert-heading {
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-box {
        min-width: 100%;
    }
    
    .promo-banner {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
}