body {
    font-family: 'Poppins', sans-serif;
    background: #f5efe9;
    color: #3a1f1a;
}

/* HERO WITH IMAGE */
.hero {
    height: 100vh;
    background: url("../images/worship.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255,106,0,0.7), rgba(176,58,46,0.7));
}

.hero-content {
    position: relative;
    color: white;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
}

/* SPLIT SECTIONS */

.split {
    display: flex;
    padding: 100px 10%;
    gap: 50px;
    align-items: center;
}

.split.reverse {
    flex-direction: row-reverse;
}

.image-container img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.highlight-box {
    margin-top: 20px;
    padding: 15px;
    background: #fff3e6;
    border-left: 5px solid #ff6a00;
}

/* TOPICS BACKGROUND IMAGE SECTION */

.topics {
    position: relative;
    background: url("../images/bible.jpg") center/cover no-repeat;
    padding: 120px 10%;
}

.topics .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 106, 0, 0.75);
}

.topics-content {
    position: relative;
    color: white;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.topic-card {
    background: rgba(255,255,255,0.9);
    color: #3a1f1a;
    padding: 25px;
    border-radius: 15px;
}

/* IMPACT WITH IMAGE */

.impact {
    position: relative;
    padding: 120px 10%;
    text-align: center;
    color: white;
}

.impact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba
