/* css/styles.css */
* {
  box‑sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans‑serif;
  line-height: 1.6;
  color: #333;
}
a {
  color: #007BFF;
  text-decoration: none;
}
header {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
}
nav {
  margin: 10px 0;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  color: white;
}
.hero h1 {
  margin: 0;
  font-size: 2.8rem;
}
.cta-button {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 24px;
  background: #007BFF;
  color: white;
  border-radius: 4px;
  font-size: 1rem;
}
section {
  padding: 40px 20px;
}
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.service {
  flex: 1 1 200px;
  max-width: 300px;
  text-align: center;
}
.service img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.about {
  background: #f9f9f9;
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #ccc;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .services {
    flex-direction: column;
    align-items: center;
  }
}
