body {
  font-family: helvetica, arial, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: white;
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; /* ~40px */
  font-weight: 800;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.text-box {
  width: 50%;
  max-width: 900px;
  margin: 0 auto;
}

p {
  margin-top: 10px;
  font-size: 1.3rem;
  text-align: justify;
  line-height: 1.5;
}

img {
  width: 250px;
  height: auto;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}

footer {
  text-align: center;
  margin-top: 30px;
}

/* 
footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  padding: 25px 30px;
  text-align: center;
  border-radius: 8px;
} */


p a {
  color: #333;               /* Soft, accessible blue */
  text-decoration: none;
  font-weight: bold;             /* Slightly bolder for visibility */
  transition: color 0.3s ease;  /* Smooth hover effect */
}

p a:hover {
  text-decoration: none;
  color: #0056b3;               /* Darker shade on hover */
}

.focus {
  font-family: 'Orbitron';
  text-align: center;
  color: black;
  font-size: 1.7rem;
}

.center {
  text-align: center;
}

/* --------------------------- */
/* Onboarding dashboard button */
/* --------------------------- */

.dashboard-button {
  position: fixed;
  top:30px;
  right: 30px;
  background-color: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background 0.3s;
}

.dashboard-button:hover {
  background-color: #333;
}

.coming-soon-box {
  position: fixed;
  top: 15px;             /* Just below the button (30px top + button height) */
  right: 15px;
  background-color: orangered;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  z-index: 1001;
  white-space: nowrap;
}


/* --------*/
/* Navbar  */
/* --------*/

header {
  overflow: hidden;
}

nav {
  border-bottom: 1px solid grey;
  border-top: 1px solid grey;
  max-width: 950px;
  margin-top: 95px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  width: 60%;
  box-sizing: border-box;
}

nav ul {
  font-size: 0;
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
  /* background-color: #f9f9f9;   */
}

.first {
  border-left: 1px solid grey;
}

nav li {
  font-size: 1.25rem;
  display: inline-block;
  text-align: center;
  border-right: 1px solid grey;
  box-sizing: border-box;
  width: 20%;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: darkgrey;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  padding: 10px 10px;
  line-height: 2.5;
}

nav a:hover,
nav a:focus {
  background-color: black;
  color: white;
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
  height: 100%;
  /* border-radius: 8px; */
}


li.active a {
  background-color: black;
  color: white;
  text-shadow: 0 5px 3px rgba(0, 0, 0, 0.15);
}

li.active a {
  /* text-decoration: underline; */
  /* background-color: lightgray;
  color: white; */
}


@media (max-width: 950px) {
  nav {
    min-width: unset;
    width: 80%;
  }

  nav ul {
    max-width: 100%;
  }

  nav li {
    display: block;
    width: 100%;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid grey;
  }

  .first {
    border-left: none;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }

  .text-box {
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
  }
}

/* -------------*/
/* Social icons */
/* -------------*/


.social-icons {
  text-align: center;
  margin-top: 60px;
}

.social-icons a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons img {
  filter: grayscale(60%); 
  transition: filter 0.2s;
  width: 70px;
}

.social-icons a:hover img {
  filter: grayscale(0%);
}


/* FAQ */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  font-size: 1.3rem;
  padding: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  font-size: 1.3rem;
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background-color: #fafafa;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px; /* adjust if needed */
  padding: 1rem;
}

/* SOS */

.text-box ul {
  list-style-position: inside;
}

.text-box li {
  padding-top: 10px;
  font-size: 1.3rem;
  line-height: 1.3;
}

/*CTA*/

.cta-button {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  background-color: #000;        /* or use a bold brand color */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.cta-button:hover {
  background-color: #222;
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta {
  text-align: center;
}
