:root {
  --white: #ffffff;
  --grey-bg: #E7E7E9;
  --text-black: #000000;
  --text-grey: #7F7F7F;
  --link: #6d80fbf7;
  --green: #4CAF50;
  --border: #B9B9B9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--white);
  color: var(--text-black);
  line-height: 1.6;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--white);
}

.nav-logo {
    height: 48px;
    width: auto;
}

/* Desktop menu */
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #B9B9B9;
    display: none;
  }

  .nav-links li {
    border-bottom: 1px solid #E7E7E9;
  }

  .nav-links a {
    display: block;
    padding: 16px;
  }

  .nav-links.open {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--text-grey);
  font-size: 14px;
}
.nav-links li a:hover {
    color: var(--text-black);
}

/* HERO */
.hero {
  text-align: center;
  padding: 160px 20px 0px;
}

.hero-logo {
  height: 80px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  max-width: 600px;
  margin: auto;
  color: var(--text-grey);
}

.cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration: none;
}

.primary {
  background: var(--text-black);
  color: var(--white);
}

.outline {
  border: 1px solid var(--text-black);
  color: var(--text-black);
}

.hero-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-images img {
  width: 300px;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.section.grey {
  background: var(--grey-bg);
  border-radius: 8px;
}
/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.feature {
  background: var(--white);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: transform 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
}
.feature-text{
    font-size: 20px;
    font-weight: 500;
}
.feature-img {
  width: 300px;       /* adjust size as needed */
  height: auto;
  margin-top: 12px;
  border-radius: 12px;
}

/* CONTACT */
.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  font-size: 24px;
  color: var(--text-black);
  margin-right: 12px;
  transition: transform 0.2s;
}

.socials a:hover {
  transform: scale(1.2);
}


/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-grey);
}







/* POLICY PAGES (Privacy & Terms) */
.policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px;
}

.policy h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.policy .updated {
  font-size: 13px;
  color: var(--greytext);
  margin-bottom: 24px;
}

.policy p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--blacktext);
  margin-bottom: 16px;
}

.policy h3 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 8px;
}

.policy ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: var(--blacktext);
}

.policy a {
  color: var(--link);
  text-decoration: none;
}

.policy a:hover {
  text-decoration: underline;
}
