*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
line-height:1.6;
color:#333;
}

header{
background:#0B2D5B;
padding:20px 0;
}

nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 20px;
}

.logo{
color:white;
font-size:32px !important;
font-weight:bold;
line-height:1;
}

nav ul{
display:flex;
list-style:none;
}

nav li{
margin-left:25px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

.donate-nav{
background:#D94141;
padding:10px 20px;
border-radius:5px;
}

.hero{
max-width:1200px;
margin:auto;
padding:60px 20px;
display:flex;
align-items:center;
gap:50px;
flex-wrap:wrap;
}

.hero-image{
flex:1;
min-width:300px;
text-align:center;
}

.hero-image img{
width:100%;
max-width:450px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.hero-text{
flex:1;
min-width:300px;
}

.hero-text h1{
font-size:48px;
line-height:1.1;
color:#0B2D5B;
margin-bottom:25px;
}

.red{
color:#D94141;
}

.hero-text p{
font-size:22px;
margin-bottom:25px;
}

.button{
display:inline-block;
background:#D94141;
color:white;
padding:18px 35px;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}

.page{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.page h1{
color:#0B2D5B;
margin-bottom:20px;
font-size:48px;
line-height:1.1;
}

.page img{
width:300px;
float:right;
margin-left:30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.issues{
background:#f3f3f3;
padding:80px 20px;
}

.issues h2{
text-align:center;
font-size:42px;
color:#0B2D5B;
margin-bottom:50px;
}

.cards{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.issue{
background:#f3f3f3;
padding:25px;
margin-bottom:25px;
border-left:6px solid #0B2D5B;
}

.issue h2{
color:#0B2D5B;
margin-bottom:10px;
}

.about{
max-width:1200px;
margin:auto;
padding:80px 20px;
text-align:center;
}

.about h2{
font-size:42px;
color:#0B2D5B;
margin-bottom:20px;
}

.about p{
font-size:20px;
max-width:900px;
margin:auto;
}

footer{
background:#0B2D5B;
color:white;
text-align:center;
padding:40px 20px;
margin-top:60px;
}

@media(max-width:768px){

.hero{
text-align:center;
}

.hero-text h1{
font-size:42px;
line-height:1.1;
color:#0B2D5B;
margin-bottom:25px;
}

nav{
flex-direction:column;
}

nav ul{
margin-top:20px;
flex-wrap:wrap;
justify-content:center;
}

nav li{
margin:10px;
}

.page img{
float:none;
display:block;
margin:0 auto 25px auto;
}

}

.photo-gallery{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
gap:20px;
margin-top:20px;
}

.photo-gallery img{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
box-shadow:0 0 15px rgba(0,0,0,.2);
}