:root {
  /* Background Colors */
  --bg-body: #054b00;
  --bg-navbar: #22751c;
  --bg-button: #22751c;
  --bg-button-hover: #fd0000;
  --bg-telegram: #229ed9;
  --bg-telegram-hover: #01b7ff;
  --bg-content: #ffffff;
  --disclaimer-bg-color: #fff4e5;

  /* Text Colors */
  --text-navbar: #ffffff;
  --text-body: #000000;
  --text-button: #ffffff;
  --text-heading: #a7cf57;

  /* Utility Colors */
  --gray-light: #f0f0f0;
  --yellow: #ffcc00;
  --warning-border: #ff6600;
  --border-color: #22751c;
  --box-shadow-color: rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* background-color: var(--bg-body); */
}

li {
  list-style-type: none;
}

.nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 1rem 2rem; */
  padding: 10px 10%;
  background-color: var(--bg-navbar);
  color: var(--text-navbar);
  position: relative;
}

.nav_logo {
  font-size: 2.2rem;
  font-weight: bold;
}

.nav_menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav_item {
  margin-left: 1.8rem;
}

.nav_link {
  color: var(--text-navbar);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.3rem;
}

.nav_toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav_toggle {
    display: block;
  }

  .nav_menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #444;
    width: 100%;
    display: none;
  }

  .nav_item {
    margin: 1rem 0;
    text-align: center;
  }

  .nav_menu.nav_show {
    display: flex;
  }
}

.footer_classname_container {
  background-color: var(--bg-navbar);
  color: var(--text-navbar);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.3rem;
}

.footer_classname_text {
  margin: 0;
  line-height: 1.6;
}

.footer_atag {
  color: var(--text-navbar);
  text-decoration: none;
}

.footer_atag:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer_classname_container {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .footer_classname_container {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  .footer_classname_text {
    padding: 0 1rem;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--bg-content);
}
 
 
.hero h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--text-heading); 
}

.hero img {
  max-width: 100%;
  width: 30%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.hero a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--bg-button);
  color: var(--text-button);
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero a {
    padding: 0.6rem 1.2rem;
    font-size: 2.2rem;
  }
}

/* Updated Step Section */
.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 2rem 0;
  padding: 0 1rem;
}

.step ol,
.step ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step p,
.step ol li,
.step ul li {
  background-color: #f9f9f9;
  border-left: 6px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-body);
}

.step img {
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  display: block;
  border: 5px solid var(--border-color);
  border-radius: 10px;
}

/* Disclaimer Section */
.desclaimer {
  margin: 2rem 0;
  background-color: var(--disclaimer-bg-color);
  border-left: 6px solid var(--warning-border);
  padding: 1.5rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--box-shadow-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .step p,
  .step ol li,
  .step ul li {
    font-size: 1rem;
  }

  .hero a {
    font-size: 1.8rem;
    width: auto;
  }
}

@media (max-width: 480px) {
  .step p,
  .step ol li,
  .step ul li {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  .hero a {
    font-size: 1.6rem;
  }

  .desclaimer {
    font-size: 0.95rem;
    padding: 1rem;
  }
}
/* -------------------- ABOUT PAGE STYLES -------------------- */
.about_nav {
  background-color: var(--bg-navbar);
  padding: 1rem 2rem;
  color: var(--text-navbar);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.about_logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.about_menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.about_link {
  color: var(--text-navbar);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.about_link:hover {
  color: var(--bg-button-hover);
}

.about_toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section */
.about_hero {
  padding: 3rem 1rem;
  text-align: center;
  background-color: var(--gray-light);
}

.about_heading {
  font-size: 2.5rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.about_intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: var(--text-body);
}

.about_image {
  max-width: 20%;
  height: auto;
  border-radius: 12px;
  border: 5px solid var(--border-color);
}

/* Content Section */
.about_content {
  padding: 2rem 1rem;
  text-align: center;
}

.about_subheading {
  font-size: 1.8rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.about_points {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 2rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-body);
}

/* Footer */
.about_footer {
  background-color: var(--bg-navbar);
  color: var(--text-navbar);
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

.about_footer_text {
  margin: 0;
  font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about_menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--bg-navbar);
    width: 100%;
    padding: 1rem 0;
  }

  .about_menu.about_show {
    display: flex;
  }

  .about_toggle {
    display: block;
  }

  .about_link {
    padding: 0.75rem;
    font-size: 1.1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about_heading {
    font-size: 2rem;
  }

  .about_intro {
    font-size: 1rem;
  }

  .about_subheading {
    font-size: 1.5rem;
  }

  .about_points {
    font-size: 0.95rem;
  }

  .about_footer_text {
    font-size: 0.9rem;
  }

  .about_p{
    display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 2rem 0;
  padding: 0 1rem;
  }
}
/* Navbar */
.contact_nav {
  background-color: var(--bg-navbar);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
  color: var(--text-navbar);
}

.contact_logo {
  font-size: 2rem;
  font-weight: bold;
}

.contact_menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.contact_link {
  color: var(--text-navbar);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact_toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact_toggle {
    display: block;
  }

  .contact_menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #444;
    width: 100%;
    display: none;
    padding: 1rem 0;
    z-index: 999;
  }

  .contact_menu.contact_show {
    display: flex;
  }

  .contact_link {
    text-align: center;
    padding: 1rem;
    width: 100%;
  }
}

/* Contact Section */
.contact_section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.contact_heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.contact_description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact_input,
.contact_textarea {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact_button {
  padding: 0.75rem;
  background-color: var(--bg-button);
  color: var(--text-button);
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact_button:hover {
  background-color: var(--bg-button-hover);
}

/* Footer */
.contact_footer {
  background-color: var(--bg-navbar);
  color: var(--text-navbar);
  text-align: center;
  padding: 1rem;
}

.contact_footer_text {
  font-size: 1rem;
}

@media (max-width: 480px) {
  .contact_heading {
    font-size: 2rem;
  }

  .contact_description {
    font-size: 1rem;
  }

  .contact_button {
    font-size: 1rem;
  }
}
/* NAVBAR */
.privacy_nav {
  background-color: var(--bg-navbar);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
  color: var(--text-navbar);
}

.privacy_logo {
  font-size: 2rem;
  font-weight: bold;
}

.privacy_menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.privacy_link {
  color: var(--text-navbar);
  text-decoration: none;
  font-size: 1.1rem;
}

.privacy_toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .privacy_toggle {
    display: block;
  }

  .privacy_menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #444;
    width: 100%;
    display: none;
    padding: 1rem 0;
    z-index: 999;
  }

  .privacy_menu.privacy_show {
    display: flex;
  }

  .privacy_link {
    text-align: center;
    padding: 1rem;
    width: 100%;
  }
}

/* CONTENT */
.privacy_section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
  color: #222;
}

.privacy_heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
  text-align: center;
}

.privacy_subheading {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--bg-navbar);
}

.privacy_paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* FOOTER */
.privacy_footer {
  background-color: var(--bg-navbar);
  color: var(--text-navbar);
  text-align: center;
  padding: 1rem;
}

.privacy_footer_text {
  font-size: 1rem;
}

@media (max-width: 480px) {
  .privacy_heading {
    font-size: 2rem;
  }

  .privacy_subheading {
    font-size: 1.4rem;
  }

  .privacy_paragraph {
    font-size: 1rem;
  }
}



/* desclaimer section */
/* Disclaimer Section Styling */

.des_section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f7f8fa, #e0eafc);
  display: flex;
  justify-content: center;
}

.des_container {
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.des_title {
  font-size: 2.4rem;
  color: #212529;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.des_title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.des_subtitle {
  font-size: 1.8rem;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.des_para {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.des_highlight {
  font-weight: bold;
  color: #d9534f;
}

/* Responsive Design */

@media (max-width: 768px) {
  .des_container {
    padding: 20px;
  }

  .des_title {
    font-size: 2rem;
  }

  .des_subtitle {
    font-size: 1.4rem;
  }

  .des_para {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .des_title {
    font-size: 1.8rem;
  }

  .des_subtitle {
    font-size: 1.2rem;
  }

  .des_para {
    font-size: 0.9rem;
  }
}
