*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:#f4f4f4;
color:#333;
}

header{
background:#b30000;
color:white;
padding:25px;
text-align:center;
}

nav{
margin-top:20px;
}

nav a{
color:white;
text-decoration:none;
margin:15px;
font-weight:bold;
}

.hero{

height:85vh;

background:

linear-gradient(
rgba(0,0,0,0.65),
rgba(0,0,0,0.55)
),

url("images/hero-background.jpg");

background-size:cover;

background-position:center;

background-repeat:no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:40px;

}

.hero-content{

max-width:900px;

color:white;

}

.hero h2{

font-size:58px;

margin-bottom:25px;

}

.hero p{

font-size:24px;

line-height:1.7;

margin-bottom:35px;

}

.button{

display:inline-block;

padding:18px 40px;

background:#b30000;

color:white;

font-weight:bold;

text-decoration:none;

border-radius:6px;

transition:.3s;

}

.button:hover{

background:#870000;

transform:translateY(-2px);

}

.hero h2{
font-size:40px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

button{
background:#b30000;
color:white;
padding:15px 35px;
border:none;
border-radius:5px;
font-size:18px;
cursor:pointer;
}

.services{
display:flex;
justify-content:center;
gap:20px;
padding:50px;
flex-wrap:wrap;
}

.card{
background:white;
padding:25px;
width:300px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

footer{
background:#222;
color:white;
padding:20px;
text-align:center;
margin-top:30px;
}