body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

header.hero {
  background: #fff;
  color: #fff;
  padding: 60px 0 40px;
  text-align: center;
}

header .container {
  max-width: 800px;
  margin: auto;
}

header .container.header-flex {
  max-width: 800px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #fff;
  color: #1e88e5;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(30,136,229,0.15);
  transition: background 0.2s, color 0.2s;
}

.cta-button:hover {
  background: #1565c0;
  color: #fff;
}

nav {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 12px 0;
  margin: 0;
}

nav li {
  margin: 0 18px;
}

nav a {
  color: #1e88e5;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.section {
  padding: 60px 0 40px;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.service-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.06);
  flex: 1 1 220px;
  padding: 28px;
  min-width: 250px;
}

.service-item:nth-child(1) {
  background: #ffe0b2; /* light orange */
}

.service-item:nth-child(2) {
  background: #c8e6c9; /* light green */
}

.service-item:nth-child(3) {
  background: #bbdefb; /* light blue */
}

.service-item h3 {
  color: #1e88e5;
  margin-top: 0;
}

#why-us ul {
  padding-left: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form button {
  background: #1e88e5;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 0;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #1565c0;
}

footer {
  background: #1e88e5;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

@media (max-width: 800px) {
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
}

.header-flex {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.logo {
  max-height: 80px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  align-self: flex-start;
}

.header-title {
  flex: 1;
}

.header-title h1 {
  color: orange;
}