*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial;
}

body{
    background:#f5f5f5;
    color:#333;
}

/* Header Section */
header{
    background:#7a0a19;
    padding:20px;
    text-align:center;
    color:white;
}

header h1{
    font-size:28px;
    font-weight:bold;
}

/* Container */
.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

/* About Section */
.about{
    padding:40px 0;
    background:white;
    margin-top:20px;
    border-radius:12px;
    padding-left:20px;
    padding-right:20px;
}

.about h2{
    color:#7a0a19;
    margin-bottom:15px;
    font-size:24px;
}

.about p{
    font-size:17px;
    line-height:1.6;
}

/* Mission Cards */
.mission{
    padding:50px 0;
}

.mission h2{
    color:#7a0a19;
    margin-bottom:25px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
    gap:20px;
}

.card{
    background:white;
    padding:25px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* Gallery Section */
.gallery{
    padding:50px 0;
}

.gallery h2{
    color:#7a0a19;
    margin-bottom:25px;
}

.gallery-grid{
    display:grid;
    gap:20px;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
}

.gallery-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* Contact */
.contact{
    padding:40px 0;
    background:white;
    margin-top:20px;
    border-radius:12px;
    padding-left:20px;
    padding-right:20px;
}

.contact h2{
    color:#7a0a19;
    margin-bottom:15px;
}

.contact p{
    font-size:18px;
    margin-bottom:5px;
}

/* Footer */
footer{
    background:#7a0a19;
    color:white;
    padding:15px;
    text-align:center;
    margin-top:20px;
}
