body {
    padding-top: 100px;
}

.stormshield-section {
    position: relative;
    min-height: 1000px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stormshield-bg {
    position: absolute;
    inset: 0;
    background: url('../images/background/bg3.png') center center/cover no-repeat;
    z-index: 1;
}

.stormshield-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(22, 22, 22, 0.8); /* dark overlay */
    z-index: 2;
}

.stormshield-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.stormshield-container.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.stormshield-img-col {
    flex: 1 1 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stormshield-img {
    max-width: 800px;
    width: 200%;
    height: auto;
    display: block;
}

.stormshield-desc-col {
    flex: 1 1 480px;
    color: #fff;
    font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
    font-size: 24px;
    line-height: 1.5;
    text-align: justify;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.stormshield-desc-col strong {
    font-weight: 700;
}

/* Tablet */
@media (max-width: 991.98px) {
    .stormshield-section {
        min-height: 400px;
    }
    .stormshield-container {
        flex-direction: column;
        gap: 32px;
        padding: 40px 8px;
        max-width: 98vw;
    }
    .stormshield-img {
        max-width: 460px;
        max-height: 400px;
    }
    .stormshield-desc-col {
        font-size: 1.05rem;
        text-align: center;
        padding: 0 10px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .stormshield-section {
        min-height: 320px;
    }
    .stormshield-container {
        gap: 18px;
        padding: 24px 2vw;
    }
    .stormshield-img {
        max-width: 220px;
        max-height: 190px;
        min-width: 180px;
    }
    .stormshield-desc-col {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 2vw;
    }
}