body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7fafc;
  color: #222;
}
header {
  background: linear-gradient(90deg, #2446a6 60%, #3ddad7 100%);
  color: #fff;
  padding: 0.5em 0;
  box-shadow: 0 2px 8px rgba(36,70,166,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1em;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 2px;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2em;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #ffe082;
}
.hero {
  background: url('images/hero-bg.jpg') center/cover no-repeat, linear-gradient(120deg, #3ddad7cc 0%, #2446a6cc 100%);
  color: #fff;
  padding: 7em 0 4em 0;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.7em;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.btn {
  background: #ffe082;
  color: #2446a6;
  padding: 0.8em 2em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover {
  background: #3ddad7;
  color: #fff;
}
.features {
  background: #fff;
  padding: 3em 0;
}
.features h2 {
  text-align: center;
  margin-bottom: 2em;
  color: #2446a6;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.feature-card {
  background: #f7fafc;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(36,70,166,0.07);
  width: 300px;
  padding: 1.5em;
  text-align: center;
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: 0 4px 24px rgba(61,218,215,0.16);
}
.feature-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-bottom: 1em;
  border-radius: 8px;
}
.page-header {
  background: linear-gradient(90deg, #3ddad7 0%, #2446a6 100%);
  color: #fff;
  padding: 3em 0 2em 0;
  text-align: center;
}
.service-list, .about-content, .contact-section {
  max-width: 900px;
  margin: 2em auto;
  background: #fff;
  border-radius: 10px;
  padding: 2em 2em 1em 2em;
  box-shadow: 0 2px 16px rgba(36,70,166,0.05);
}
.service-block {
  margin-bottom: 2em;
}
.service-block h2 {
  color: #2446a6;
  margin-bottom: 0.3em;
}
.about-content ul {
  margin-top: 1em;
  padding-left: 1.2em;
}
.contact-flex {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}
.contact-details, .contact-form {
  flex: 1 1 300px;
  min-width: 260px;
}
.contact-details h2 {
  color: #2446a6;
  margin-bottom: 0.5em;
}
.contact-form h2 {
  color: #3ddad7;
  margin-bottom: 0.5em;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
input, select, textarea {
  padding: 0.7em;
  border: 1px solid #cfd8dc;
  border-radius: 5px;
  font-size: 1em;
  background: #f7fafc;
}
button[type="submit"] {
  background: #2446a6;
  color: #fff;
  padding: 0.8em;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="submit"]:hover {
  background: #3ddad7;
}
.form-note {
  font-size: 0.9em;
  color: #888;
  margin-top: 0.7em;
}
footer {
  background: #2446a6;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  margin-top: 2em;
  font-size: 1em;
  letter-spacing: 1px;
}
@media (max-width: 800px) {
  .grid { flex-direction: column; align-items: center; }
  .contact-flex { flex-direction: column; }
}
