.sc-bg-img-box {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60vh;
    background-image: url('https://caricojm.com/wp-content/uploads/2026/01/21.webp'); /* replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sc-bg-img-box-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.sc-bg-img-box-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}
.container.bg-img-box-content {
    z-index: 1;
}
p.sc-bg-img-box-subtext {
    color: var(--white);
}
.sc-bg-img-box h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    color:var(--white);
}

.sc-bg-img-btn {
    background: var(--primary-color);
    color: var(--white);
	border: 1px solid var(--primary-color);
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.sc-bg-img-btn:hover {
    background: transparent;
	color:white;
	border: 1px solid white;
}

.sc-bg-img-box-subtext {
    margin-top: 10px;
    font-size: 1rem;
}

.sc-bg-img-box-subtext a {
    color: #fff;
    text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .sc-bg-img-box {
        height: 50vh;
        padding: 0 20px;
    }

    .sc-bg-img-box h2 {
        font-size: 1.8rem;
    }

    .sc-bg-img-btn {
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .sc-bg-img-box {
        height: auto;
        padding: 60px 20px;
    }

    .sc-bg-img-box h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}
