/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #ffffff;
  text-align: center;
  padding: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
}

header img {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}

/* Banner */
.banner {
  background: url("home-banner.jpg") no-repeat center center/cover;
  color: #fff;
  padding: 8rem 2rem;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
}

.banner-text {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.banner h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 600; }
.banner p { font-size: 1.25rem; margin-bottom: 2rem; }

.banner .btn {
  background: #0073e6;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.banner .btn:hover { background: #005bb5; }

/* Sections */
section {
  background: #f0f0f0; /* light gray */
  padding: 4rem 2rem;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

section h2 {
  color: #004466;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

section h3 {
  color: #0073e6;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Services */
.services ul {
  list-style: none;
  padding-left: 0;
}

.services li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services i {
  color: #0073e6;
  font-size: 1.2rem;
}

/* Testimonials */
.testimonials blockquote {
  background: #ffffff;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0073e6;
  border-radius: 4px;
}

.testimonials cite {
  display: block;
  margin-top: 0.5rem;
  font-style: italic;
  color: #555;
}

/* Partners */
.partner-logos {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding-left: 0;
}

.partner-logos li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.partner-logos i {
  color: #0073e6;
}

/* Contact */
.contact a {
  color: #0073e6;
  font-weight: bold;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 2rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer */
footer {
  background: #004466;
  color: #fff;
  padding: 2rem 1rem;
  width: 100%;
}

footer .content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
