@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v44/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPecZTIAOhVxoMyOr9n_E7fRMQ.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIw.ttf) format('truetype');
}
@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/titilliumweb/v19/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIw.ttf) format('truetype');
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #111;
  text-align: justify;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .header-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 0;
}
.site-header .header-inner .brand .logo {
  height: 70px;
}
.site-header .header-inner .main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.site-header .header-inner .main-nav a {
  color: #6b6b6b;
  font-weight: 600;
  transition: color 0.3s;
}
.site-header .header-inner .main-nav a:hover {
  color: #386bb3;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background: linear-gradient(90deg, #ee723c, #f7a53b);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.btn.btn-primary:hover {
  filter: brightness(1.1);
}
.btn.btn-outline {
  border: 2px solid #386bb3;
  color: #386bb3;
  background: transparent;
}
.btn.btn-outline:hover {
  background: #386bb3;
  color: #fff;
}
.hero {
  padding: 60px 0;
}
.hero .hero-grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.hero .hero-grid .hero-copy {
  flex: 1 1 360px;
}
.hero .hero-grid .hero-copy h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: 2.5rem;
  color: #386bb3;
  margin: 0 0 12px;
}
.hero .hero-grid .hero-copy .lead {
  color: #6b6b6b;
  margin-bottom: 18px;
  line-height: 1.6;
}
.hero .hero-grid .hero-copy .hero-cta {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero .hero-grid .hero-copy .hero-features {
  list-style: disc;
  padding-left: 20px;
  color: #6b6b6b;
  font-size: 0.95rem;
}
.hero .hero-grid .hero-image {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
}
.hero .hero-grid .hero-image img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
}
.section {
  padding: 60px 0;
}
.section.bg-light {
  background: #fbfbfb;
}
.section h2 {
  font-family: "Titillium Web", sans-serif;
  font-size: 2rem;
  color: #ee723c;
  margin-bottom: 12px;
  text-align: center;
}
.section p.muted {
  color: #6b6b6b;
}
.services-grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
}
.services-grid .service {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.services-grid .service:hover {
  transform: translateY(-4px);
}
.services-grid .service h3 {
  font-family: "Titillium Web", sans-serif;
  color: #386bb3;
  margin-top: 0;
  text-align: center;
}
.services-grid .service p {
  color: #6b6b6b;
  line-height: 1.4;
}
.team-grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 20px;
}
.team-grid .team-member {
  flex: 1 1 180px;
  background: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.team-grid .team-member img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}
.team-grid .team-member h4 {
  font-family: "Titillium Web", sans-serif;
  color: #386bb3;
  margin-bottom: 4px;
}
.team-grid .team-member p {
  color: #6b6b6b;
  font-size: 0.9rem;
}
.gallery-grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.gallery-grid figure {
  flex: 0 0 25%;
}
.gallery-grid figure img {
  border-radius: 8px;
}
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.clients-logos img {
  max-height: 48px;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.clients-logos img:hover {
  opacity: 1;
}
.contact-grid {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-grid .contact-card {
  flex: 1 1 380px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.contact-grid .contact-card h2 {
  font-family: "Titillium Web", sans-serif;
  color: #386bb3;
}
.contact-grid .contact-card p {
  color: #6b6b6b;
  margin-bottom: 8px;
}
.contact-grid .contact-card p a {
  color: #ee723c;
  font-weight: 600;
}
.contact-grid .contact-card p a:hover {
  text-decoration: underline;
}
.contact-grid .map-card {
  flex: 1 1 380px;
}
.contact-grid .map-card .map-placeholder {
  height: 260px;
  background: linear-gradient(180deg, #f4f4f4, #ededed);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6b6b;
}
.contact-grid .map-card .map-placeholder iframe {
  max-width: 100%;
}
.site-footer {
  padding: 18px 0;
  border-top: 1px solid #eee;
  background: #fff;
}
.site-footer .footer-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  text-align: center;
}
.site-footer .footer-inner .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .footer-inner .footer-nav a {
  color: #6b6b6b;
}
.site-footer .footer-inner .footer-nav a:hover {
  color: #386bb3;
}
@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: 2rem;
    text-align: center;
  }
  .hero-copy .lead,
  .hero-cta {
    justify-content: center;
  }
  .services-grid,
  .gallery-grid,
  .team-grid,
  .contact-grid {
    justify-content: center;
  }
  .gallery-grid img {
    flex: 1 1 100%;
    height: 200px;
    object-fit: cover;
  }
  .main-nav {
    display: none;
  }
  .brand .logo {
    height: 50px;
  }
  .contact-grid .map-card .map-placeholder {
    margin-top: 7rem;
  }
  .site-footer .footer-inner {
    margin-top: 3rem;
    justify-content: center;
  }
}
