/* === BASE === */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #0d0d0d;
  color: #fff;
}

/* === NAVBAR STYLES === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000; /* uniform across all pages */
  padding: 15px 30px;
  width: 100%;  /* Ensures full width */
  box-sizing: border-box;  /* Prevents any padding issues */
}

.logo img {
  height: 40px;
  margin-left: 10px; /* push right */
  margin-top: 15px;   /* push down */
}

.nav-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;  /* Ensures no unwanted spacing */
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  font-size: 1.1rem; /* Ensures font size is consistent */
  transition: color 0.3s;
  display: inline-block; /* Prevents vertical misalignment */
}

/* === UPDATED: Active Link Style === */
.nav-links a.active {
  color: #ffc400;
  padding-bottom: 3px;
}

.nav-links a:hover {
  color: #ffc400;
}

/* === MAIN HEADER (replaces HERO) Section === */
.main-header {
  padding: 5rem 2rem;
  text-align: center;
  background-color: #000; /* same as navbar */
}

.main-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffc400;
  margin-bottom: 1rem;
}

.main-header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}


/* === General Header (fallback) === */
header {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #000; /* same everywhere */
}

header img {
  height: 60px;
  margin-bottom: 1rem;
}

header h1 {
  font-size: 2.8rem;
  color: #ffc400;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 1rem auto;
}

/* === Advantages Section === */
.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #111;
}

.advantage {
  background-color: #1c1c1c;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.1);
}

.advantage h3 {
  color: #ffc400;
  margin-bottom: 0.5rem;
}

.advantage p {
  color: #ddd;
  font-size: 0.95rem;
}

/* === Call To Action === */
.cta {
  text-align: center;
  margin: 3rem 0;
}

.cta button {
  background-color: #ffc400;
  color: #000;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

/* === Download Section === */
.download-now {
  background-color: #0b0b0b;
  padding: 4rem 2rem;
  text-align: center;
}

.download-now h2 {
  font-size: 2.5rem;
  color: #ffc400;
  margin-bottom: 1rem;
}

.download-now p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.qr-code {
  width: 220px;
  height: 220px;
  border: 2px solid #ffc400;
  border-radius: 12px;
  padding: 8px;
  background-color: #fff;
}

.store-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}

.store-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.store-buttons a img {
  width: 160px;
  height: auto;
  display: block;
}

.store-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
}

/* === Footer === */
footer {
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: 0.9rem;
  background-color: #0a0a0a;
}

/* === Contact Section === */
.contact {
  background-color: #0d0d0d;
  padding: 4rem 2rem;
  /* border-top: 1px solid #1f1f1f; */
  /* border-bottom: 1px solid #1f1f1f; */
}

.contact .container {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  color: #ffc400;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact .card {
  background-color: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.08);
  display: inline-block;
  max-width: 1000px;
  text-align: left;
}

.contact .card h3 {
  color: #ffc400;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact .card p {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact .email {
  display: inline-block;
  background: #ffc400;
  color: #000;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.email-wrapper {
  text-align: center;
}

.contact .note {
  color: #bdbdbd;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.contact ul {
  color: #ccc;
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.contact ul li {
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .advantages {
    grid-template-columns: 1fr;
  }

  .download-content {
    flex-direction: column;
  }

  .store-buttons {
    flex-direction: column;
  }
}

/* === UPDATED: Privacy Policy content styling === */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  box-sizing: border-box;
  color: #ddd;
  line-height: 1.6;
}

.content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: #ffc400;
}

.content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #ffc400;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ccc;
}

/* === Custom Bullets === */
.custom-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.custom-bullets li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
}

.custom-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #ffc400;
  border-radius: 50%;
}

/* === Email button styling === */
.email {
  display: block;
  background-color: #ffc400;
  color: #000;
  padding: 0.75rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
}

.email:hover,
.email:focus {
  background-color: #e6b800;
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.6);
  outline: none;
}

/* === Small note (if needed) === */
.note {
  color: #bdbdbd;
  font-size: 0.92rem;
  text-align: center;
  margin-top: 0;
}

/* Privacy Policy page container styled like Contact Us card */
.content .container {
  background-color: #1c1c1c;  /* Same dark card background */
  border: 1px solid #2a2a2a;  /* Subtle border */
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.08);
  max-width: 900px;  /* Similar width to Contact Us card */
  margin: 2rem auto 4rem auto;  /* Centered with vertical spacing */
  color: #ddd;  /* Light text color */
  line-height: 1.6;
}

/* Headings inside privacy container */
.content .container h2,
.content .container h3 {
  color: #ffc400;  /* Gold accent color */
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content .container h2 {
  font-size: 2.2rem;
  margin-top: 0;
}

.content .container h3 {
  font-size: 1.4rem;
}

/* Paragraphs */
.content .container p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 1.2rem;
}

Custom bullets inside privacy container
.content .container ul.custom-bullets {
  margin-bottom: 1.8rem;
}

.content .container ul.custom-bullets li {
  font-size: 1rem;
  color: #ddd;
}

/* Wrap email link in a centered container */
.content .container .email-wrapper {
  text-align: center;  /* Centers inline/inline-block elements inside */
  margin: 2rem 0;      /* Adds vertical spacing around the button */
}

/* Email link styling inside privacy container */
.content .container a.email {
  display: inline-block;  /* ensures width is only as wide as content */
  background-color: #ffc400;
  color: #000;
  padding: 0.5rem 1.5rem; /* slightly more horizontal padding for better button look */
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.content .container a.email:hover,
.content .container a.email:focus {
  background-color: #e6b800;
  box-shadow: 0 6px 20px rgba(255, 196, 0, 0.5);
  outline: none;
}

.content .intro-text {
  max-width: 900px;
  margin: 3rem auto 1rem auto;
  color: #ffc400;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}

.content .intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.content .intro-text p {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 400;
}
