body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f8fcff;
  color: #1a2a33;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(52, 232, 158, 0.07);
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  width: 38px;
  height: 38px;
  margin-right: 0.7rem;
}
.nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3bb2f6;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: #1a2a33;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: #34e89e;
}
.main-intro {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.main-intro-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  filter: brightness(0.6);
  z-index: 1;
}
.main-intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.main-intro-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.main-intro-content p {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.cta-btn {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  background: linear-gradient(90deg, #3bb2f6 0%, #34e89e 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(52, 232, 158, 0.10);
  transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #34e89e 0%, #3bb2f6 100%);
  transform: translateY(-2px) scale(1.03);
}
main {
  max-width: 1000px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}
.about-section, .contact-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(52, 232, 158, 0.06);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}
.about-section h2, .contact-section h2, .services-section h2 {
  color: #3bb2f6;
  margin-bottom: 1rem;
}
.services-section {
  margin-bottom: 2.5rem;
}
.services-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-card {
  background: #f4fafd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(52, 232, 158, 0.08);
  padding: 1.5rem 1.2rem;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(59, 178, 246, 0.13);
  transform: translateY(-4px) scale(1.03);
}
.service-card h3 {
  color: #1a2a33;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: #3a4a5a;
  font-size: 1rem;
}
address {
  font-style: normal;
  background: #f4fafd;
  border-left: 4px solid #34e89e;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}
footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  background: linear-gradient(135deg, #3bb2f6 0%, #34e89e 100%);
  color: #fff;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .main-intro-content h1 {
    font-size: 1.7rem;
  }
  .about-section, .contact-section {
    padding: 1.2rem 0.7rem;
  }
  .service-card {
    padding: 1rem 0.7rem;
  }
}
.split-about {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(52, 232, 158, 0.06);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.about-img {
  flex: 1 1 45%;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4fafd;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
}
.about-content h2 {
  font-size: 2.7rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
  color: #1a2a33;
}
.about-content h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 1.2rem 0;
  color: #222;
}
.about-content p {
  font-size: 1.08rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 900px) {
  .split-about {
    flex-direction: column;
    min-height: unset;
  }
  .about-img, .about-content {
    flex: unset;
    min-width: 0;
    width: 100%;
    padding: 0;
  }
  .about-content {
    padding: 2rem 1rem;
  }
}
.split-services {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.services-header {
  flex: 1 1 320px;
  max-width: 340px;
  padding-top: 1.5rem;
}
.services-header h2 {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  color: #1a2a33;
}
.services-header p {
  font-size: 1.1rem;
  color: #222;
  margin: 0 0 1.5rem 0;
}
.services-grid {
  flex: 3 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem 2rem;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(52, 232, 158, 0.08);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  min-height: 220px;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(59, 178, 246, 0.13);
  transform: translateY(-6px) scale(1.03);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.1rem;
  color: #3bb2f6;
}
.service-card h3 {
  font-size: 1.25rem;
  font-family: 'Georgia', serif;
  font-weight: 600;
  margin: 0 0 0.7rem 0;
  color: #1a2a33;
}
.service-card p {
  color: #3a4a5a;
  font-size: 1.05rem;
  margin: 0;
}
.service-accent1 { border-top: 5px solid #3bb2f6; }
.service-accent2 { border-top: 5px solid #34e89e; }
.service-accent3 { border-top: 5px solid #a0e3f6; }
.service-accent4 { border-top: 5px solid #7be6c8; }
@media (max-width: 1100px) {
  .split-services {
    flex-direction: column;
    gap: 2rem;
  }
  .services-header {
    max-width: 100%;
    padding-top: 0;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 0.5rem 1rem;
  }
  .navbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav-logo {
    flex-direction: row;
    align-items: center;
  }
  .hamburger {
    margin-left: auto;
  }
  .services-header h2 {
    font-size: 2rem;
  }
  .service-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .services-grid {
    gap: 1.2rem 0.7rem;
  }
}
.testimonials-section {
  background: #f8fcff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(52, 232, 158, 0.06);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.testimonials-section h2 {
  color: #3bb2f6;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(52, 232, 158, 0.08);
  display: inline-block;
  padding: 1.5rem 2.5rem;
  margin: 0 auto;
  max-width: 500px;
}
.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #222;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-size: 1rem;
  color: #3bb2f6;
  font-weight: 600;
}
.footer-links {
  text-align: center;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #3bb2f6;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #34e89e;
}
.about-section, .services-section, .testimonials-section, .contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
}
.split-about, .split-services {
  width: 100%;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}
.services-section .split-services, .about-section .split-about {
  min-height: unset;
}
@media (max-width: 900px) {
  .about-section, .services-section, .testimonials-section, .contact-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  .split-about, .split-services {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    height: auto;
  }
  .about-img, .about-content, .services-header, .services-grid {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .about-content {
    padding: 2rem 1rem;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: row;
    padding: 0.5rem 1rem;
  }
  .navbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav-logo {
    flex-direction: row;
    align-items: center;
  }
  .hamburger {
    margin-left: auto;
  }
  .nav-menu {
    position: absolute;
    top: 60px;
    right: 10px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(52, 232, 158, 0.10);
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    width: 180px;
    padding: 1rem 0.5rem;
    gap: 0.7rem;
    display: none;
    z-index: 15;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    font-size: 1rem;
    padding: 0.3rem 0;
  }
  .main-intro-content h1 {
    font-size: 1.3rem;
  }
  .main-intro-content p {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
  .about-content h2 {
    font-size: 1.3rem;
  }
  .services-header h2 {
    font-size: 1.3rem;
  }
  .service-card {
    padding: 1rem 0.5rem 0.7rem 0.5rem;
    min-height: unset;
  }
  .testimonial-card {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 500px) {
  .about-content, .services-header, .services-grid, .testimonial-card, .contact-section address {
    padding: 0.7rem 0.2rem !important;
  }
  .about-content h2, .services-header h2 {
    font-size: 1.1rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-icon {
    font-size: 1.3rem;
  }
  .footer-links {
    font-size: 0.8rem;
  }
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: #1a2a33;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: absolute;
    top: 60px;
    right: 10px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(52, 232, 158, 0.10);
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    width: 180px;
    padding: 1rem 0.5rem;
    gap: 0.7rem;
    display: none;
    z-index: 15;
  }
  .nav-menu.open {
    display: flex;
  }
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
} 