.ss-protection-sec {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Top Badge */
.ss-prot-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #ffe44d;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* .ss-prot-badge::before {
    content: '';
    width: 35px;
    height: 3px;
    background: #ffe44d;
} */

/* Cards Wrapper */
.ss-prot-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.ss-prot-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.ss-prot-card:hover {
    transform: translateY(-5px);
}

.ss-prot-card-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #FFC928;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ss-prot-card-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #ffe44d;
}

.ss-prot-card-dot {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 10px;
    height: 10px;
    background: #ffe44d;
    border-radius: 50%;
}

.ss-prot-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.ss-prot-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Note Section */
.ss-prot-note-box {
    background: #fffdf2;
    border: 1.5px solid #fff3b3;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.ss-prot-note-label {
    background: #ffe44d;
    color: #1a1a1a;
    font-weight: 900;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.ss-prot-note-text {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

/* Bottom CTA Button */
.ss-prot-cta {
    text-align: center;
}

.ss-prot-btn {
    display: inline-block;
    background: #3c3c3c;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ss-prot-btn:hover {
    background: #000;
}

/* Reponsiveness */
@media (max-width: 991px) {
    .ss-prot-cards {
        flex-direction: column;
    }
    .ss-prot-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .ss-prot-note-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 30px;
    }
    .ss-protection-sec {
       padding: 10px 20px;
   }
   .ss-prot-card {
        padding: 20px;
    }
}
