body,html{
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #f9fafc;
    /* color: blue; */
    line-height: 1.6;
}

header {
    background-color: #f9f6e7;
    color: blue;
    text-align: center;
    padding: 2rem;
    border-bottom: 5px solid #0568f3;
    padding-top: 80px;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    
}

header p {
    font-style: italic;
    font-size: 1.1rem;
    color: black;
}

#mission {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1rem;
     background-color: #f9f6e7;
    margin-top: 200ox;
}
.mission, .vision,.ministries {
    text-align: center;
}
.mission,.vision {
    /* background: #fff; */
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.mission,.vision h2 {
    color: blue;
    margin-bottom: 1rem;
    /* border-bottom: 2px solid #4a6fa5; */
    /* display: inline-block; */
    padding-bottom: 0.3rem;
}

.mission p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: black;
}
.vision img{
    width: 300px;
    height: 300px;
}
.ministries h2{
 color: blue;
    
}

/* Ministries Grid */
.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.ministry {
    background: #fdfdfd;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.ministry:hover {
    transform: translateY(-5px);
}

.ministry img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}
.ministry h3 {
    color: blue;
    margin-bottom: 0.5rem;
}