.safety-banner-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.safety-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .safety-banner-img {
        height: 300px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .safety-banner-img {
        height: 200px;
        object-fit: cover;
    }
}


.safety-section{
    padding: 80px 20px;
    background: #fafafa;
    font-family: 'Segoe UI', Arial, sans-serif;
}
 
.safety-card{
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 15px 40px rgba(224, 105, 138, 0.08);
    text-align: center;
    height: 100%;
}
 
.safety-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    font-size: 1.5rem;
}
 
.safety-icon-do{
    background: #e3faf0;
    color: #16a34a;
}
 
.safety-icon-dont{
    background: #fde8e8;
    color: #dc2626;
}
 
.safety-title{
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: 5px;
}
 
.safety-subtitle{
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
 
.safety-list{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}
 
.safety-list li{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed var(--color-tint-light);
}
 
.safety-list li.no-border{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
 
.safety-marker{
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 2px;
}
 
.safety-marker-do{
    background: #16a34a;
}
 
.safety-marker-dont{
    background: #dc2626;
}
 
.safety-list strong{
    display: block;
    color: var(--color-primary-dark);
    font-size: 0.95rem;
    margin-bottom: 3px;
}
 
.safety-list p{
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
 
/* Tablet */
@media (max-width: 991px){
    .safety-card{ padding: 35px 25px; margin-bottom: 25px; }
    .safety-title{ font-size: 1.5rem; }
}
 
/* Mobile */
@media (max-width: 576px){
    .safety-section{ padding: 50px 15px; }
    .safety-card{ padding: 28px 20px; border-radius: 18px; }
    .safety-title{ font-size: 1.3rem; }
    .safety-list li{ gap: 10px; }
}