
*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f4f4;
color:#333;
}

.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

.hero{
text-align:center;
padding:10px 20px;
background:white;
}

.hero h1{
font-size:32px;
margin-bottom:15px;
margin-top:20px;
color:#ca3338;
}

.hero p{
max-width:700px;
margin:auto;
color:#666;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:white;
padding-bottom:20px;
border-radius:6px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:transform .3s ease, box-shadow .3s ease;
animation:fadeUp .8s ease forwards;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.card img{
width:100%;
border-radius:6px 6px 0 0;
}

.card h3{
padding:20px;
font-size:18px;
}

.card p{
padding:0 20px 10px;
color:#666;
}

button{
margin-left:20px;
padding:10px 20px;
border:none;
background:#1ca3d8;
color:white;
border-radius:4px;
cursor:pointer;
transition:.3s;
}

button:hover{
background:#1488b5;
}

button a, button a:hover{
	color:#FFF;
	text-decoration:none;
}

button a:hover {
	color:#d1d1d1;
}


.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:6px;
}

.contact{
text-align:center;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.contact-box{
background:white;
padding:25px;
border-radius:6px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:.3s;
}

.contact-box:hover{
transform:scale(1.03);
}

footer{
background:#222;
color:white;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
}

.footer-grid div{
padding:30px;
text-align:center;
border-right:1px solid rgba(255,255,255,0.1);
}

.footer-grid div:last-child{
border:none;
}

.blue{
background:#1ca3d8;
}

@keyframes fadeUp{
from{opacity:0;transform:translateY(20px);}
to{opacity:1;transform:translateY(0);}
}

@media(max-width:768px){
.hero h1{font-size:26px;}
.about{grid-template-columns:1fr;text-align:center;}
}
