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

body {
  font-family: "muna", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding-top: 30px;
  text-align: center;
  /* background-color: rgba(8, 124, 124, 0.05); */
  border-bottom: 1px solid rgba(8, 124, 124, 0.1);
}

.logo img {
  max-height: 80px;
  margin-bottom: 10px;
}

main {
  padding: 40px 0;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding-left: 20px;
}

h1 {
  font-family: "kufam", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #087c7c;
}

p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #4b5563;
}

.download-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.download-btn img {
  height: 50px;
  transition: transform 0.3s ease;
}

.download-btn:hover img {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(8, 124, 124, 0.2);
}

.phone-mockup {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.phone-mockup img {
  max-height: 600px;
  max-width: 100%;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  font-family: "kufam", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  color: #087c7c;
}

footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  color: #6b7280;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: invert(42%) sepia(93%) saturate(427%) hue-rotate(140deg)
    brightness(92%) contrast(101%);
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content {
    padding: 0;
    margin-top: 40px;
  }

  .download-buttons {
    justify-content: center;
  }

  h1 {
    font-size: 2rem;
  }

  .phone-mockup img {
    max-height: 450px;
  }
}
