/* styles.css */
body{
  margin:0;
  font-family: 'Arial', sans-serif;
  background:#111;
  color:#fff;
}
header{
  display:flex;
  justify-content:space-between;
  padding:16px 32px;
  background:linear-gradient(90deg,#ff003c,#ff8a00);
  align-items:center;
}
header .logo{
  font-weight:900;
  font-size:24px;
}
header nav a{
  color:#fff;
  margin-left:20px;
  text-decoration:none;
  font-weight:700;
}
.hero{
  text-align:center;
  padding:80px 20px;
  background:linear-gradient(180deg,#ff003c,#ff8a00);
}
.hero h1{
  font-size:48px;
  margin-bottom:10px;
}
.hero .tagline{
  font-size:20px;
  margin-bottom:20px;
  font-weight:700;
}
.hero button{
  background:#fff;
  color:#ff003c;
  border:none;
  padding:12px 24px;
  font-weight:700;
  font-size:16px;
  border-radius:8px;
  cursor:pointer;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:40px 20px;
}
.card{
  background:#222;
  padding:20px;
  border-radius:12px;
  text-align:center;
  transition: transform 0.2s;
  
  margin: 1em;
}
.card:hover{
  transform:scale(1.05);
  box-shadow:0 8px 20px rgba(255,0,60,0.5);
}
form{
  display:flex;
  flex-direction:column;
  max-width:400px;
  margin:0 auto 40px;
}
form input, form textarea{
  padding:12px;
  margin-bottom:12px;
  border-radius:8px;
  border:none;
  font-size:14px;
}
form button{
  background:#ff003c;
  color:#fff;
  border:none;
  padding:12px;
  font-weight:700;
  cursor:pointer;
  border-radius:8px;
}
form button:hover{
  background:#ff1a5a;
}
footer{
  text-align:center;
  padding:20px;
  background:#111;
  color:#aaa;
  font-size:14px;
}

.overview{
  display:flex;
  justify-content:center;
  padding:60px 20px;
  background:#111;
}
.overview-box{
  background:#333;
  padding:40px 30px;
  max-width:700px;
  text-align:center;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.5);
}
.overview-box h2{
  font-size:28px;
  margin-bottom:12px;
  font-weight:900;
  color:#fff;
}
.overview-box p{
  font-size:18px;
  font-weight:700;
  color:#fff;
}

.services{
    display: flex;
    flex-direction: column;
}