/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography & Body */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f9f9f9;
}

/* Header */
header {
  background-color: #fff;
  color: #222;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

nav .logo img {
  width: 50px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 0.75rem 1rem;
  display: block;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover {
  background-color: #f4f4f4;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    padding: 0.75rem;
    border-radius: 0;
  }
}

/* Hero Section */
.hero {
  background: url('../images/hero-bg.png') no-repeat center center/cover;
  background-color: #e9ecef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 2s ease-in;
  height: auto;
  min-height: calc(100vh - 80px);
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #2c3e50;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero button {
  padding: 0.75rem 1.5rem;
  font-size: 1em;
  border: none;
  background: #00b050;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.5rem;
  font-weight: 600;
}

.hero button:hover {
  background-color: #008033;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Features Section */
#features {
  padding: 4em 1rem;
  background: #f4f4f4;
  text-align: center;
}

#features h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature h3 {
  margin-top: 0;
  color: #00477e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
}

/* Footer */
footer {
  background: #00477e;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  #features h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 1rem;
  }
}

#about-us {
  padding: 4em 1rem;
  background: #f9f9f9;
  text-align: center;
}

#about-us h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #2c3e50;
}

#about-us p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  text-align: left;
}

#pricing {
  padding: 4em 1rem;
  background: #fff;
  text-align: center;
}

#pricing h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #2c3e50;
}

#pricing p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.pricing-plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-plan {
  background: #f4f4f4;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  text-align: left;
}

.pricing-plan:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.pricing-plan h3 {
  margin-top: 0;
  color: #00477e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-plan p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pricing-plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.pricing-plan ul li {
  margin-bottom: 0.5rem;
  font-size: 1em;
  color: #444;
}

.pricing-plan .price {
  font-size: 2rem;
  font-weight: bold;
  color: #00b050;
  margin-bottom: 1rem;
}

.pricing-plan button {
  padding: 0.75rem 1.5rem;
  font-size: 1em;
  border: none;
  background: #00b050;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.5rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.pricing-plan button:hover {
  background-color: #008033;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }

  .pricing-plan {
    width: 90%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .pricing-plan {
    padding: 1rem;
  }

  #pricing {
    padding: 4em 1rem;
  }

  #about-us {
    padding: 4em 1rem;
  }
}
