:root {
  --primary-color: #00BFFF;
  --text-color: #1A1A1A;
  --light-gray: #f9f9f9;
  --bg-color: #FFFFFF;
  --border-color: #e0e0e0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  background-color: #ffffff;
  font-family: 'YourMainPageFont', sans-serif; /* replace with your main page font */
}

.navbar {
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.logo-text {
  font-weight: 900;
  font-size: 1.5rem;
  color: #000000; /* black or exact color from your main page */
}

/* CTA button styling */
.cta-button-nav {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  background-color: var(--primary-color); /* or exact hex from main page */
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-button-nav:hover {
  background-color: #0099cc; /* or your main page hover color */
}


.container {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 24px;
}

.back-arrow svg {
  width: 48px;   /* increase width */
  height: 48px;  /* increase height */
  stroke-width: 3; /* optional: make lines thicker */
  color: #1A1A1A;
}


.back-arrow svg:hover {
  color: #454546;
}


h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.5em;
  color: var(--text-color);
  text-align: center;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 6px;
}

ul {
  padding-left: 24px;
  margin-bottom: 1.2rem;
}

ul li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

strong {
  font-weight: 600;
  color: #333;
}

footer {
  background-color: var(--light-gray);
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  color: #666;
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
}

.footer-link {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #555; /* Lighter black/gray on hover */
    text-decoration: none; /* Ensures no underline on hover */
}

.footer-content p {
  margin: 0;
}
.container {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Laptop: 769px - 1024px */
@media (max-width: 1024px) {
  .container {
    padding: 40px 32px;
    margin: 60px auto;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  p,
  ul li {
    font-size: 1rem;
  }

  .back-arrow svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .container {
    max-width: 90%;          /* ✅ Add this to make the box narrower */
    padding: 30px 20px;
    margin: 50px auto;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  p,
  ul li {
    font-size: 0.95rem;
  }

  .back-arrow svg {
    width: 36px;
    height: 36px;
  }
}

/* Mobile: 0 - 480px */
@media (max-width: 480px) {
  nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .logo-container {
    justify-content: center;
  }

  .container {
    padding: 24px 16px;
    margin: 40px auto;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p,
  ul li {
    font-size: 0.9rem;
  }

  .back-arrow svg {
    width: 32px;
    height: 32px;
  }

  .cta-button-nav {
    width: 100%;
    text-align: center;
  }
}
