* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}
.btn-primary {
  background: #ff7a18;
  color: #fff;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #eb6115;
}
.services {
  padding: 80px 0;
  background: #f9f9f9;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #4b6cb7;
}
.about {
  padding: 80px 0;
}
.about h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}
.about ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}
.about li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.about li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4b6cb7;
}
.contact {
  padding: 80px 0;
  background: #f9f9f9;
}
.contact h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}
.contact p {
  text-align: center;
  margin-bottom: 10px;
}
.contact a {
  color: #4b6cb7;
  text-decoration: none;
}
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
