body {
    font-family: 'Poppins', sans-serif;
    color: #212529;
    line-height: 1.7;
}

h1, h2, h3 {
    font-weight: 700;
    color: #0F5132;
}

.navbar {
    background: linear-gradient(135deg, #0F5132, #00C4A0) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero {
    background: linear-gradient(rgba(15, 81, 50, 0.75), rgba(15, 81, 50, 0.85)), 
                url('https://via.placeholder.com/1920x900/00C4A0/ffffff?text=Casa+de+Encuentro') center/cover no-repeat;
    color: white;
    padding: 220px 0 160px;
    text-align: center;
}

.btn-iglesia {
    background-color: #00C4A0;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-iglesia:hover {
    background-color: #0F5132;
    transform: translateY(-4px);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #00C4A0;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,196,160,0.25);
}

.footer {
    background: #0F5132;
    color: #A1E9D9;
}