/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  color: #1d1d1f;
  line-height: 1.5;
}

/* Header / Navbar */
.apple-navbar {
  position: fixed;
  top: 0; width: 100%;
  background: #f5f5f7;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 1000;
  border-bottom: 1px solid #d2d2d7;
}
.nav-logo i {
  font-size: 18px;
  color: #000;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 6px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #0071e3;
}
.nav-icons a {
  color: #000;
  font-size: 16px;
  margin-left: 18px;
  transition: color 0.2s;
}
.nav-icons a:hover {
  color: #0071e3;
}
body {
  padding-top: 44px; /* to prevent content behind fixed header */
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
.hero-image {
  max-width: 100%;
  height: auto;
  flex: 1 1 400px;
}
.hero-text {
  flex: 1 1 400px;
}
.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}
.btn {
  background-color: #0071e3;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  margin-right: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn.primary {
  background-color: #0071e3;
}
.btn:hover {
  background-color: #005bb5;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.feature {
  text-align: center;
}
.feature-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.feature-alt {
  /* Optionally alternate style, e.g. background */
}

/* Footer */
.site-footer {
  background: #f5f5f7;
  color: #1d1d1f;
  margin-top: 60px;
  border-top: 1px solid #d2d2d7;
}
.footer-top {
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}
.footer-col {
  flex: 1 1 200px;
}
.footer-col h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #0066cc;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #004a99;
}
.footer-bottom {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #6e6e73;
  border-top: 1px solid #d2d2d7;
}
