/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #222;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 18px 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 60px;
}
.main-nav a {
  color: #003366;
  text-decoration: none;
  margin: 0 18px;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.2s;
}
.main-nav a.cta {
  background: #f7b731;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  margin-left: 24px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(247,183,49,0.12);
}
.main-nav a:hover {
  color: #f7b731;
}

/* Hero */
.hero {
  background: linear-gradient(90deg, #003366 60%, #f7b731 100%);
  color: #fff;
  padding: 60px 0 40px 0;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-text {
  max-width: 520px;
}
.hero-text h1 {
  font-size: 2.8em;
  font-weight: 900;
  margin: 0 0 18px 0;
  line-height: 1.1;
  letter-spacing: 1px;
}
.hero-text p {
  font-size: 1.3em;
  margin-bottom: 28px;
}
.hero-text .cta {
  display: inline-block;
  background: #f7b731;
  color: #003366;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 24px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(247,183,49,0.18);
}
.hero-image {
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
/* Social icons removed */

/* Services */
.services {
  background: #f8f9fa;
  padding: 60px 0 40px 0;
  color: #003366;
}
.services h2 {
  text-align: center;
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 36px;
}
.appliance-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.appliance {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  font-size: 1.1em;
}
.appliance img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}
.service-features {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}
.service-features li {
  font-size: 1.08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
.check {
  color: #f7b731;
  font-size: 1.3em;
  margin-right: 12px;
}

/* Footer */
.site-footer {
  background: #003366;
  color: #fff;
  padding: 40px 0 0 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}
.footer-section h5 {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.footer-section a {
  color: #f7b731;
  text-decoration: none;
}
.footer-section a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1em;
  color: #f7b731;
  background: #002244;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-image {
    margin-top: 32px;
    align-self: center;
  }
  .appliance-list {
    gap: 28px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .container {
    width: 98%;
  }
  .site-header {
    padding: 10px 0;
  }
  .logo {
    height: 40px;
  }
  .main-nav a {
    margin: 0 8px;
    font-size: 1em;
  }
  .hero {
    padding: 32px 0 18px 0;
  }
  .hero-text h1 {
    font-size: 1.5em;
  }
  .hero-image {
    max-width: 100%;
  }
  .services {
    padding: 32px 0 18px 0;
  }
  .appliance img {
    width: 60px;
    height: 60px;
  }
}
