@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f4f6;
  color: #1f2937;
  line-height: 1.6;
}

/* ✅ Responsive & Fixed Header Layout */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3375f6;
}

.contact-btn {
  background-color: #3375f6;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
  font-size: 0.9rem;
}

.contact-btn:hover {
  background-color: #1f55d0;
}

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

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: #2563eb;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #4b5563;
}

.app-buttons {
  display: flex;
  gap: 1rem;
}

.app-buttons img {
  height: 50px;
}

.contact-box {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info li span {
  margin-left: 0.5rem;
  color: #374151;
}

.illustration {
  flex: 1 1 300px;
  text-align: center;
}

.footer {
  background-color: #3877f4;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.footer a {
  color: white;
  text-decoration: none;
  margin: 0 0.25rem;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-icons {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer svg {
  fill: white;
}

.footer-icons a {
  color: white;
  text-decoration: none;
}

/* ✅ Mobile Fix */
@media (max-width: 768px) {
  .header-container {
    padding: 0.8rem 1rem;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo img {
    height: 34px;
  }

  .contact-btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    margin-bottom: 2rem;
  }

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