/* Modern Ministry Theme */
:root {
    --primary: #2c3e50;
    --accent: #d35400;
    --text-dark: #333;
    --light-bg: #f8f9fa;
}

.mission-page {
    line-height: 1.8;
    color: var(--text-dark);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.hero-gradient {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('YOUR-IMAGE-URL.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: white;
}

.hero-title { font-size: 3.5rem; margin-bottom: 10px; font-weight: 800; }

.card-container {
    display: flex;
    gap: 20px;
    margin: -60px auto 40px;
    max-width: 1100px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.info-card {
    background: white;
    flex: 1;
    min-width: 250px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.info-card:hover { transform: translateY(-10px); }

.info-card i { font-size: 2rem; color: var(--accent); display: block; margin-bottom: 15px; }

/* Progress Bar Styling */
.progress-container {
    background: #eee;
    border-radius: 20px;
    margin: 20px 0;
    height: 25px;
    overflow: hidden;
}

.progress-fill {
    background: var(--accent);
    width: 65%; /* Adjust this % as construction moves forward */
    height: 100%;
    color: white;
    font-size: 12px;
    line-height: 25px;
    text-align: center;
}

.story-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .story-section { flex-direction: column; text-align: center; }
    .hero-title { font-size: 2.2rem; }
}

.btn-modern {
    padding: 18px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary { background: var(--accent); color: white; }
.btn-outline { border: 2px solid white; color: white; margin-left: 10px; }