/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f7fa; /* Slight background for contrast */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar a.logo {
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
  color: #007bff;
}

.navbar ul {
  list-style: none;
  display: flex;
}

.navbar ul li {
  margin-left: 1.5rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.navbar ul li a:hover {
  color: #007bff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  color: #007bff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .cta-button:hover {
  background-color: #f5f7fa;
  color: #0056b3;
}

/* Services Section */
.services {
  background: #fff;
  padding: 4rem 0;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.service-item {
  display: inline-block;
  width: 30%;
  margin: 0 1.5%;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #007bff;
}

.service-item p {
  font-size: 1rem;
  color: #666;
}

.service-item:hover {
  transform: translateY(-10px);
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .service-item {
    width: 90%;
    margin-bottom: 2rem;
  }
}

/* Testimonials Section */
.testimonials {
  background: #f5f7fa;
  padding: 4rem 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.testimonials blockquote {
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

.testimonials cite {
  font-size: 1rem;
  color: #007bff;
}

/* Contact Section */
.contact {
  background: #fff;
  padding: 4rem 0;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.contact .cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact .cta-button:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

footer .footer-content p {
  margin-bottom: 1rem;
}

footer .social-links {
  list-style: none;
  display: inline-flex;
  padding: 0;
}

footer .social-links li {
  margin-left: 1rem;
}

footer .social-links li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

footer .social-links li a:hover {
  color: #007bff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }

  .service-item {
    width: 100%;
    margin: 1rem 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .navbar ul li {
    margin: 0.5rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services h2,
  .testimonials h2 {
    font-size: 1.5rem;
  }

  footer .social-links {
    flex-direction: column;
  }

  footer .social-links li {
    margin: 0.5rem 0;
  }
}
