body {
  margin: 0;
  background: #f5f5f5;
  color: black;
  padding-top: 80px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 20px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
F
.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 180px;
    padding: 15px;
    border-radius: 5px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

/* HERO */
.hero {
  padding: 10px 10px;
  text-align: center;
  background-color: #000;
}

.hero h1 {
  font-size: 3.5em;
  margin: 10px 0;
  color: #f97316;
}

.hero h1 span {
  font-weight: bold;
  color: white;
}

/* CONTENT 1 */
.content1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #fff;
  gap: 40px;
}

.content-left img {
  width: 150%;
  max-width: 550px;
  border-radius: 12px;
}

.content-right {
  max-width: 450px;
}

.content-righ h2 {
  font-size: 32px;
  color: #1e1e1e;
  line-height: 1.4;
  margin-bottom: 20px;
}

.content-righ p {
  font-size: 20px;
  color: #1e1e1e;
  line-height: 1.6;
}

/* Mobile Content 1 */
@media (max-width: 768px) {
  .content1 {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .content-left img {
    max-width: 100%;
  }

  .content-right h2 {
    font-size: 24px;
  }

  .content-right p {
    font-size: 18px;
  }
}

/* DARK SECTION */
.section-dark {
  background: #0b0b0b;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.section-dark h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-dark h3 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
}

.section-dark p {
  max-width: 1000px;
  margin: 10px auto;
  font-size: 18px;
  line-height: 1.7;
}

.section-dark ul {
  list-style: disc;
  margin: 20px auto 0;
  padding-left: 0;
  max-width: 900px;
  font-size: 24px;
  text-align: left;
}

.section-dark ul li {
  font-size: 18px;
  margin: 10px 0;
}

/* Mobile Dark Section */
@media (max-width: 768px) {
  .section-dark {
    padding: 50px 20px;
  }

  .section-dark h2 {
    font-size: 30px;
  }

  .section-dark h3 {
    font-size: 20px;
  }

  .section-dark p {
    font-size: 16px;
  }

  .section-dark ul {
    padding-left: 20px;
  }

  .section-dark ul li {
    font-size: 16px;
  }
}

/* HOW IT WORKS */
.how-it-works {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

.text-section {
  flex: 1 1 400px;
  max-width: 600px;
}

.text-section h1 {
  font-size: 3.5em;
  font-weight: bold;
  text-shadow: 2px 2px #ccc;
  text-align: center;
}

.text-section h3 {
  font-size: 2em;
  margin-top: 10px;
  color: #000;
}

.text-section ol {
  margin-top: 20px;
  padding-left: 20px;
  font-size: 1.5em;
  line-height: 1.6;
}

.image-section {
  flex: 1 1 400px;
  max-width: 500px;
}

.image-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile How It Works */
@media (max-width: 768px) {
  .how-it-works {
    flex-direction: column;
    padding: 30px 20px;
  }

  .text-section h1 {
    font-size: 2em;
  }

  .text-section h3 {
    font-size: 1em;
  }

  .text-section ol {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .text-section h1 {
    font-size: 1.6em;
  }

  .text-section h3 {
    font-size: 0.9em;
  }

  .text-section ol {
    font-size: 0.9em;
  }
}

/* IMAGE GRID */
.image-grid-section {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  margin: 0;
  background: #000;
  color: #222;
}

.image-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  width: 100%;
}

.image-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
}

.image-card img {
  width: 100%;
}

.image-card p {
  padding: 12px;
  font-weight: bold;
  font-size: 1em;
  margin: 0;
}

@media (max-width: 768px) {
  .image-grid-4 {
    grid-template-columns: 1fr;
  }

  .image-card p {
    font-size: 0.95em;
  }
}

/* SAVE MORE SECTION */
.save-more-section {
  display: flex;
  flex-wrap: wrap;
  padding: 70px;
  gap: 60px;
  justify-content: center;
  background: #fff;
  color: #222;
  font-family: Arial, sans-serif;
}

.text-content {
  flex: 1 1 400px;
  max-width: 700px;
}

.text-content h1 {
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 1px 1px #ccc;
  margin-bottom: 20px;
}

.text-content ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 1.1em;
  line-height: 2.5;
}

.table-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.table-content p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.table-content table {
  width: 100%;
  border-collapse: collapse;
  background: #fff2db;
  font-size: 0.95em;
}

.table-content th,
.table-content td {
  border: 1px solid #ddd;
  padding: 12px 15px;
}

.table-content th {
  background: #ffe4bd;
}

/* Mobile Save More */
@media (max-width: 768px) {
  .save-more-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .text-content h1 {
    font-size: 2em;
  }

  .text-content ul {
    font-size: 1em;
  }

  .table-content p {
    font-size: 1em;
  }

  .table-content table {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .text-content h1 {
    font-size: 1.5em;
  }

  .text-content ul {
    font-size: 0.95em;
  }

  .table-content p {
    font-size: 0.95em;
  }
}

/* WHY QUICKZA */
.why-quickza {
  padding: 40px 300px;
  text-align: center;
  background: #000;
  color: #f26522;
}

.why-quickza h1 {
  font-size: 3em;
  text-shadow: 2px 2px #222;
  margin-bottom: 30px;
}

.why-quickza ul {
  list-style: none;
  padding: 0;
}

.why-quickza li {
  font-size: 2em;
  margin-bottom: 15px;
  display: flex;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .why-quickza {
    padding: 20px 15px;
  }

  .why-quickza h1 {
    font-size: 1em;
  }

  .why-quickza li {
    font-size: 1.1em;
    display: block;
  }
}

/* FOOTER */
.footer {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 0.9em;
  margin-top: 60px;
}

/* WORK WITH US */
.work-with-us {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  justify-content: center;
  background-color: black;
  color: #fff;
}

.text-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 1.2em;
  margin: 10px 0;
}

.image-section img {
  max-width: 100%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .work-with-us {
    flex-direction: column;
    text-align: center;
  }

  .text-section h2 {
    font-size: 2em;
  }

  .text-section p {
    font-size: 1em;
  }
}

/* QUICKZA INFO */
.quickza-info {
  max-width: 650px;
  margin: auto;
  padding: 20px;
  line-height: 1.6;
  text-align: center;
}

.quickza-info h2 {
  font-size: 2.4em;
  margin-bottom: 20px;
}

.quickza-info p {
  font-size: 1.15em;
  margin: 12px 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  display: inline-block;
}

.check-list li {
  font-size: 1.15em;
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "✔";
  color: #2ecc71;
  position: absolute;
  left: 0;
}

/* Mobile Quickza Info */
@media (max-width: 768px) {
  .quickza-info h2 {
    font-size: 1.8em;
  }

  .quickza-info p {
    font-size: 1em;
  }

  .check-list li {
    font-size: 1em;
    padding-left: 26px;
  }
}

/* CONTACT ACCORDION */
.content {
  position: relative;
  background: #fff;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.contentBx.active .question::before {
  content: "-";
}

.accordion .contentBx.active .content {
  height: 150px;
  padding: 10px;
}

/* BIG FOOTER */
footer {
  width: 100%;
  background: #fff;
  color: #000;
}

.top_header {
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.top_header section {
  display: flex;
  justify-content: center;
  width: 80%;
}

.top_header span {
  padding: 0 1rem;
}

.top_header .fa {
  color: #f26522;
  font-size: 35px;
}

footer .bottom_content section {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
}

.bottom_content a {
  margin: 0 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.5s;
}

.bottom_content a:hover {
  color: #fff;
}

.copyright {
  padding: 0.8em 0;
  background: #1e1e1e;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

@media (max-width: 820px) {
  .top_header {
    padding: 1rem;
    display: block;
  }

  .top_header section {
    margin: 40px 0;
    justify-content: left;
  }

  footer .bottom_content section {
    padding: 1rem;
    display: block;
  }

  footer .bottom_content section a {
    padding: 1rem;
    font-size: 12px;
    margin: 0 5px;
    display: inline-block;
  }
}
