* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 70px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background-color: #E9E9E5;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #343B3E;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #343B3E;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1b1e1f;
}

section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.about p,
.apps ul,
.contact p {
  font-size: 1.125rem;
  color: #374151;
}

.apps h3 span{
  font-size: 1rem;
}

.apps ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.apps ul li a {
  color: #374151;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #f3f4f6;
  color: #6b7280;
  font-size: 0.875rem;
}

.homelink{
  text-decoration: none;
  color: #1f2937;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .about p,
  .apps ul,
  .contact p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .logo img {
    height: 40px;
  }

  nav ul {
    align-items: flex-start;
  }
}
