body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7fafd;
  color: #222;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 20px 0;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 48px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover {
  color: #1e90ff;
}
.btn {
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: #1e90ff;
  color: #fff;
}
.btn-primary:hover {
  background: #156dc1;
}
.btn-secondary {
  background: #fff;
  color: #1e90ff;
  border: 2px solid #1e90ff;
}
.btn-secondary:hover {
  background: #1e90ff;
  color: #fff;
}
.hero {
  background: linear-gradient(90deg, #e3f0ff 0%, #f7fafd 100%);
  padding: 60px 0 40px 0;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-content {
  max-width: 500px;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #1e90ff;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 32px;
}
.hero-image img {
  width: 350px;
  max-width: 100%;
  animation: floatOwl 3s ease-in-out infinite;
}

@keyframes floatOwl {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}




.services {
  padding: 60px 0 40px 0;
  background: #fff;
}
.services h2 {
  text-align: center;
  color: #1e90ff;
  margin-bottom: 40px;
}
.services-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.service-item {
  background: #f7fafd;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-item i {
  font-size: 2.5rem;
  color: #1e90ff;
  margin-bottom: 16px;
}
.benefits {
  padding: 60px 0 40px 0;
  background: #e3f0ff;
}
.benefits h2 {
  text-align: center;
  color: #1e90ff;
  margin-bottom: 40px;
}
.benefits-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.benefit-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.benefit-item i {
  font-size: 2.2rem;
  color: #1e90ff;
  margin-bottom: 12px;
}
.testimonials {
  padding: 60px 0 40px 0;
  background: #fff;
}
.testimonials h2 {
  text-align: center;
  color: #1e90ff;
  margin-bottom: 40px;
}
.testimonials-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.testimonial-item {
  background: #f7fafd;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  width: 320px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.testimonial-item img {
  width: 200px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.testimonial-item img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


.footer {
  background: #1e90ff;
  color: #fff;
  padding: 40px 0 0 0;
}
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 24px;
}
.footer-logo img {
  height: 40px;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #e3f0ff;
}
.footer-social a {
  color: #fff;
  margin-right: 16px;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #e3f0ff;
}
.footer-bottom {
  text-align: center;
  padding: 16px 0;
  background: #156dc1;
  color: #fff;
  font-size: 0.95rem;
}
@media (max-width: 1200px) {
  .container {
    width: 96%;
    max-width: 1000px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 900px) {
  .header-container, .hero-container, .services-list, .benefits-list, .testimonials-list, .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-content, .hero-image {
    width: 100%;
    text-align: center;
  }
  .footer-container {
    align-items: center;
    text-align: center;
  }
  .nav ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .services-list, .benefits-list, .testimonials-list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .service-item, .benefit-item, .testimonial-item {
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0 8px;
  }
  .header {
    padding: 12px 0;
  }
  .logo img {
    height: 36px;
  }
  .btn, .btn-primary, .btn-secondary {
    padding: 10px 18px;
    font-size: 0.95rem;
  }
  .hero {
    padding: 32px 0 24px 0;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-image img {
    width: 180px;
  }
  .services, .benefits, .testimonials {
    padding: 32px 0 20px 0;
  }
  .services h2, .benefits h2, .testimonials h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .service-item, .benefit-item, .testimonial-item {
    padding: 18px 8px;
    font-size: 0.98rem;
    max-width: 100%;
  }
  .testimonial-item img {
    width: 100px;
    height: 90px;
  }
  .footer {
    padding: 20px 0 0 0;
  }
  .footer-logo img {
    height: 28px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-social a {
    margin-right: 8px;
    font-size: 1.1rem;
  }
  .footer-bottom {
    font-size: 0.85rem;
    padding: 10px 0;
  }
} 