body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fefefe;
}

header img {
  max-width: 200px;
  margin: 20px;
}

nav {
  display: flex;
  justify-content: center;
  background: #333;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  display: inline-block;
}

nav a:hover {
  background: #ff6b35;
}

.hero, .about-hero, .services-hero {
  text-align: center;
  padding: 50px 20px;
  background: #f2f2f2;
}

.cta-buttons .btn {
  background: #ff6b35;
  color: white;
  padding: 12px 25px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
}

.cta-buttons .btn:hover {
  background: #e65a2c;
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin: 20px;
}

.founder-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ff6b35;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 30px 20px;
}

.service-card {
  text-align: center;
  width: 250px;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}
