* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvatica-reg, sans-serif;
}
@font-face {
  font-family: Helvatica-reg; /* set name */
  src: url(../fonts/Helvetica.ttf); /* url of the font */
}
body {
  overflow-x: hidden;
}

:root {
  --primary: #2d9be4;
  --text-main: #23254c;
  --text-light: #77788f;
  --bg-light: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
}

.navbar .logo {
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links .nav-link-item {
  text-decoration: none;
  font-weight: 400;
  position: relative;
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: var(--bg-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 0;
}

/* Arrow (cone shape) */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

.dropdown-menu a {
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.dropdown-menu a:hover {
  background: #e2f8fd;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-btn {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 6px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}

/* Mobile */
.hamburger {
  display: none;
  font-size: 22px;
  color: black;
  cursor: pointer;
}
/* ----------------------------------------------
MAIN CONTENT
---------------------------------------------- */

.main-content {
  padding-top: 80px;
}

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

/* Make all h1 tags in page headers look the same */
.page-title {
  font-size: 45px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.help-centre-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Overview Section */
.overview-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 40px;
}

.overview-content h2 {
  font-size: 32px;
  font-weight: 400;
  color: #222;
  margin-bottom: 20px;
}
.overview-content strong {
  font-size: 20px;
}
.overview-content p {
  font-size: 16px;
  line-height: 1.7;
}

.overview-image img {
  max-width: 100%;
  height: auto;
}

/* Setup Section */
.setup-section {
  background: url(started_bg.svg);
  padding: 40px 0;
}

.setup-section h2 {
  font-size: 32px;
  font-weight: 400;
  color: #222;
  margin-bottom: 15px;
}

.setup-section > .container > p {
  font-size: 18px;
  color: #555;
  margin-bottom: 80px;
  max-width: 700px;
}

.setup-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.setup-item {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  align-items: center;
}

.setup-item img {
  width: 300px;
  height: auto;
}
.setup-content {
  max-width: 600px;
  min-width: 600px;
}
.setup-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.setup-content ul {
  list-style: none;
}

.setup-content li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

.setup-content li::before {
  content: "•";
  color: #00aeef;
  font-size: 30px;
  position: absolute;
  left: 0;
  top: -9px;
}

/* Tips Section */
.tips-section {
  padding: 40px 0;
  /* text-align: center; */
}
.tips-section .container {
  max-width: 1000px;
}
.tips-section h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 80px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.tip-card {
  text-align: left;
}

.tip-card img {
  width: 125px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
}

.tip-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.tip-card ul {
  list-style: none;
  text-align: left;
  font-size: 14px;
  color: #555;
}

.tip-card li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.tip-card li::before {
  content: "•";
  color: #00aeef;
  font-size: 30px;
  position: absolute;
  left: 0;
  top: -9px;
}
/* CTA Section */
.cta-section {
  padding: 40px 0;
  text-align: center;
  background: white;
}

.cta-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.cta-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  background: linear-gradient(90deg, #36d1dc 0%, #5b86e5 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 6px;
  transition: all 0.3s ease;
  width: fit-content;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(91, 134, 229, 0.4);
}

/* ----------------------------------------------
FOOTER
---------------------------------------------- */

.footer {
  background-color: #0b0b19; /* Dark background */
  color: #ffffff;
  padding: 60px 40px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: 140px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.copyright {
  color: #cccccc;
  font-size: 13px;
  margin-top: auto;
}

.footer-right {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-section h4 {
  color: #888;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section p a {
  color: #cccccc;
  text-transform: none;
  font-size: 14px;
}

/* Social icons */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #ffffffff;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}
/* ---------- Responsive Main Content ---------- */
/* Setup Section */
@media (max-width: 900px) {
  .overview-section .container {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .overview-image img {
    max-width: 80%;
    margin: 0 auto;
  }
  .setup-grid {
    gap: 40px;
  }

  .setup-item {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .setup-item img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .setup-content {
    max-width: 100%;
    min-width: unset; /* remove the forced 600px */
  }

  .setup-content ul {
    text-align: left; /* keep bullets aligned */
  }
  /* Tips Section */
  .tips-section {
    padding: 40px 0;
  }
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tip-card {
    text-align: center;
  }

  .tip-card ul {
    text-align: left; /* so bullets remain aligned */
  }
}

/* Responsive */

@media (max-width: 768px) {
  .navbar {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--bg-light);
    position: absolute;
    top: 70px;
    right: 5%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    width: 90%; /* full responsive width */
  }

  .nav-links .nav-link-item,
  .nav-links .nav-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }

  .nav-links .nav-btn {
    margin-top: 6px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    border: none;
  }

  .nav-links .nav-link-item:last-child,
  .nav-links .nav-btn:last-child {
    border-bottom: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  /* --- Submenu always visible under More --- */
  .dropdown {
    width: 100%;
  }
  .dropdown .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .dropdown .dropdown-menu a {
    padding: 12px 30px; /* indent to show submenu visually */
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }

  .dropdown-toggle::after {
    display: none; /* remove arrow on mobile */
  }

  .dropdown-menu::before {
    display: none;
  }

  /*Main Content*/
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-title {
    font-size: 36px;
  }

  /*CTA SECTION*/
  .cta-section {
    padding: 40px 0px;
  }
  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
    padding: 0 20px;
  }
  /*Footer*/
  .footer-left {
    min-height: 0px;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .footer-right {
    justify-content: left;
    gap: 40px;
    flex-direction: column;
    width: 100%;
  }
  .social-icons {
    justify-content: center;
  }
  .copyright {
    text-align: center;
  }
}
