:root {
  --accent: #fff;
  --container: 960px;
}
* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}
body {
  margin: 0;
  background: #fff;
  color: #111;
  line-height: 1.5;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem;
}
.logo {
  width: 80px;
  height: auto;
}
.title-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.title {
  font-size: 1.8rem; /* adjust size */
  color: #ffffbf;
  margin: 0;
}

.header {
  background: linear-gradient(to right, #fab43e, #ff8c42);
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  height: 200px;
  overflow: hidden;
  border: none;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--accent);
}
.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
}
.wave path {
  stroke: none;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.05rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  background: #fff;
  color: #ff9d14 !important;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}
.btn-primary {
  background: #ffffbf;
  color: #ff9d14;
  box-shadow: 0 4px 12px #03225826;
}
.btn:hover,
.btn:focus {
  transform: translate(2px, -4px);
  box-shadow: 0 6px 16px #03225829;
  background: #ffffbf;
  color: #ffb650 !important;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ff9d14;
}
.btn:active {
  transform: translateY(0);
  opacity: 0.95;
}
.btn:disabled {
  opacity: 0.55;
  pointer-events: none;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  background: linear-gradient(180deg, #fff, #f3f4f6);
  gap: 0.5rem; /* Space between text and image */
  flex-wrap: wrap;
}

.hero .container {
  flex: 1 1 50%; /* Take half of hero space */
  max-width: 600px;
  text-align: left;
}

.hero h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero .lead {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero img {
  flex: 1 1 50%; /* Take half of hero space */
  max-width: 500px;
  margin-right: 15rem;
  margin-bottom: 1.5rem;
  height: auto;
  display: block;
}

.section {
  padding: 3rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.features-grid li {
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 4px #00000005;
  transition: box-shadow 0.2s ease;
}
.features-grid li:hover {
  box-shadow: 0 4px 10px #0000000d;
}
.footer {
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(to right, #fab43e, #ff8c42);
  color: linear-gradient(to right, #fab43e, #ff8c42);
  padding: 1rem;
  margin-top: 3rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
}
.footer a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer a:hover {
  color: var(--accent);
}

/*responsive*/
@media (max-width: 1580px) {
  .hero img {
    margin-right: 0rem;
  }
}
@media (max-width: 1024px) {
  :root {
    --container: 90vw;
  }
  .header {
    height: 250px;
  }
  .hero {
    padding: 3rem 1rem;
    text-align: center;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .lead {
    margin: 0 auto 1.5rem;
  }
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .nav {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.6rem;
  }
  .lead {
    font-size: 1rem;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .hero .container {
    text-align: center;
    max-width: 90%;
  }

  .hero img {
    max-width: 80%;
    margin-right: 0rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .header {
    height: 280px;
  }
  .header-inner {
    text-align: center;
  }
  .nav a.btn {
    width: auto;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 0.95rem;
  }
  .hero {
    padding: 2.5rem 1rem;
  }
  .hero h2 {
    font-size: 1.4rem;
  }
  .lead {
    font-size: 0.95rem;
  }
  .footer-inner {
    flex-direction: column;
  }
}
