
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f4f6f9;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #002855;
  padding: 15px 30px;
}

.logo {
  height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background: linear-gradient(to right, #d62828, #003049);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
}

.cta-button {
  margin-top: 20px;
  display: inline-block;
  background-color: #0077cc;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.owner-img {
  width: 180px;
  border-radius: 50%;
  border: 4px solid #003049;
}

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

.card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card h3 {
  color: #003049;
  margin-bottom: 10px;
}

.area, .contact {
  text-align: center;
}

footer {
  background: #002855;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
