body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header container */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #000;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Logo Image */
header .logo img {
  height: 50px;      /* adjust as needed */
  width: auto;
  display: block;
}

/* Navigation menu */
header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

header nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

header nav a:hover {
  color: #ffb703;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  header .logo img {
    height: 40px;
  }
}

/* Hero Section */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #E0E0E0;
  color: black;
  padding: 0 20px;
}

.hero-title {
  font-size: 54px;
  margin-top:20px;
  
  line-height: 1.2;
}

.hero-text {
  font-size: 22px;
  max-width: 800px;
  
  margin-top:-20px;
  line-height: 1.5;
}

.hero-subtext {
  font-size: 20px;
  margin-top:-400px;
}


@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .hero-text { font-size: 24px; max-width: 600px; }
  #helpBtn { padding: 16px 80px; font-size: 20px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-text { font-size: 20px; max-width: 90%; }
  #helpBtn { padding: 14px 60px; font-size: 18px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-text { font-size: 16px; max-width: 90%; }
  #helpBtn { padding: 12px 40px; font-size: 16px; }
}

.support {
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f5f5;
}
.support h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
}
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
}
.card {
  background-color: white;
  padding: 30px 20px;
  width: 280px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
  color:black;
}
.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.chat-box {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 320px;
  height: 400px;
  background-color: white;
  border: 2px solid #0078d7;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  z-index: 1000;
}
.chat-header {
  background-color: #0078d7;
  color: white;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}
.chat-header button {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}
.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.4;
}
.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}
.chat-input input {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 14px;
}
.chat-input button {
  background-color: #0078d7;
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.3s;
}
.chat-input button:hover {
  background-color: #005bb5;
}
.live-status {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #06d6a0;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 44px;
  }
  .hero p {
    font-size: 22px;
  }
  .hero button {
    padding: 16px 80px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }
  header nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 18px;
  }
  .hero button {
    padding: 14px 60px;
    font-size: 18px;
  }
  .cards {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero button {
    padding: 12px 50px;
    font-size: 16px;
  }
  .card {
    width: 90%;
    padding: 20px;
  }
}
.cta-section {
  
  color: black;
  text-align: center;
  padding: 30px 20px;
}
.cta-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.cta-section .cta-btn {
  background: rgb(17 24 39);
  color:  #ffb703;
  font-size: 24px;
  font-weight: 600;
  padding: 20px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.cta-section .cta-btn:hover {
  background:rgb(17 24 39); 
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.pro-help {
  background-color: rgb(17 24 39);
  text-align: center;
  padding: 80px 20px;
}
.pro-help h2 {
  font-size: 26px;
  margin-bottom: 28px;
  color: white;
  margin-top:-40px;
}
.pro-card {
  max-width: 600px;
  margin: 0 auto;
  background:linear-gradient(45deg, #ffd166, #ffb703);
  padding: 10px 10px;
  border-radius: 36px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}
.pro-card h3 {
  font-size: 30px;
  margin-bottom: 20px;
  color: rgb(17 24 39);;
}
.pro-card p {
  font-size: 18px;
  color: rgb(17 24 39);;
  line-height: 1.6;
  margin-bottom: 10px;
}
.pro-card .pro-btn {
  background: linear-gradient(45deg, #0078d7, #00b4d8);
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 50px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pro-card .pro-btn:hover {
  background: linear-gradient(45deg, #005bb5, #0094c2);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
footer {
  background-color: rgb(17 24 39);
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  margin-top:-80px;
  line-height: 1.6;
}
footer a {
  color: #06d6a0;
  text-decoration: none;
  margin: 0 5px;
}
footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 32px;
  }
  .cta-section .cta-btn {
    padding: 14px 45px;
    font-size: 18px;
  }
  .pro-help h2 {
    font-size: 28px;
  }
  .pro-card {
    padding: 30px 20px;
  }
  .pro-card h3 {
    font-size: 22px;
  }
  .pro-card p {
    font-size: 15px;
  }
  .pro-card .pro-btn {
    padding: 10px 40px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .cta-section h2 {
    font-size: 26px;
  }
  .cta-section .cta-btn {
    padding: 12px 35px;
    font-size: 16px;
  }
  .pro-help h2 {
    font-size: 24px;
  }
  .pro-card h3 {
    font-size: 20px;
  }
  .pro-card p {
    font-size: 14px;
  }
  .pro-card .pro-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}


/* Terms & Conditions  */
.terms-page {
  --max-width: 1100px;
  --accent: #0f62fe;
  --muted: #6b7280;
  --bg: #f7f9fb;
  --card: #ffffff;
  --radius: 12px;
  --gap: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0f1724;
  background: var(--bg);
}

.terms-page .container {
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 24px;
}

.terms-page .brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.terms-page .brand h1 {
  margin: 0;
  font-size: 22px;
}

.terms-page .meta {
  color: var(--muted);
  font-size: 14px;
}

.terms-page .layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
}

@media (max-width: 880px) {
  .terms-page .layout {
    grid-template-columns: 1fr;
  }
  .terms-page .toc {
    order: 2;
    margin-bottom: 20px;
  }
}

.terms-page .card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  width:90%;
  margin-top:20px;
  margin-bottom:50px;
  box-shadow: 0 6px 18px rgba(12, 20, 40, 0.06);
}

.terms-page .toc {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  overflow: auto;
}

.terms-page .toc h2 {
  font-size: 16px;
  margin: 0 0 12px;
}

.terms-page .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-page .toc a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
}

.terms-page main {
  min-height: 60vh;
}

.terms-page section {
  margin-bottom: 20px;
}

.terms-page h2 {
  font-size: 18px;
  margin: 6px 0 10px;
}

.terms-page h3 {
  font-size: 16px;
  margin: 10px 0;
}

.terms-page p {
  margin: 10px 0;
  color: #223;
}

.terms-page ul li {
  margin: 6px 0;
}

.terms-page .muted {
  color: var(--muted);
  font-size: 14px;
}

.terms-page footer {
  background-color: #0f62fe;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 13px;
}

.terms-page footer a {
  color: white;
  text-decoration: underline;
}
@media print {
  .terms-page {
    background: #fff;
  }
  .terms-page .toc {
    display: none;
  }
  .terms-page .container {
    padding: 0;
  }
  .terms-page header {
    display: none;
  }
}
.privacy-policy {
  --max-width: 1100px;
  --accent: #0f62fe;
  --muted: #6b7280;
  --bg: #f7f9fb;
  --card: #ffffff;
  --radius: 12px;
  --gap: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0f1724;
}

.privacy-policy .container {
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 24px;
}

.privacy-policy .brand {
  display: flex;
  flex-direction: column;
}

.privacy-policy .brand h1 {
  margin: 0;
  font-size: 20px;
}

.privacy-policy .meta {
  color: var(--muted);
  font-size: 14px;
}

.privacy-policy .layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  margin-top: 18px;
}

@media (max-width: 880px) {
  .privacy-policy .layout {
    grid-template-columns: 1fr;
  }
  .privacy-policy .toc {
    order: 2;
  }
}

.privacy-policy .card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  width: 95%;
  margin-bottom: 80px;
  box-shadow: 0 6px 18px rgba(12, 20, 40, 0.06);
}

.privacy-policy .toc {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  overflow: auto;
}

.privacy-policy .toc h2 {
  font-size: 16px;
  margin: 0 0 12px;
}

.privacy-policy .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-policy .toc a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
}

.privacy-policy main {
  min-height: 60vh;
}

.privacy-policy section {
  margin-bottom: 20px;
}

.privacy-policy h2 {
  font-size: 18px;
  margin: 6px 0 10px;
}

.privacy-policy h3 {
  font-size: 16px;
  margin: 10px 0;
}

.privacy-policy p {
  margin: 10px 0;
  color: #223;
}

.privacy-policy .muted {
  color: var(--muted);
  font-size: 14px;
}

@media print {
  .privacy-policy body {
    background: #fff;
  }
  .privacy-policy .toc {
    display: none;
  }
  .privacy-policy .container {
    padding: 0;
  }
  .privacy-policy header {
    display: none;
  }
}