/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --primary: #1c8f46;
  --secondary: #1c8f46;
  --text: #ffffff;
  --text-dark: #333333; /* Darker for better contrast */
  --text-medium: #444444; /* Darker for better contrast */
  --base-bg-color: #f0f0f0;
  --font-family:  "Open Sans", sans-serif;
  --line-height-normal: 1.7;
  --line-height-heading: 1.3;
  --letter-spacing-normal: 0;
  --letter-spacing-heading: -0.01em;
}

.nmb6tmhm h1,
h2,
h3,
h4 {
  text-align: center;
  color: var(--text);
  background: linear-gradient(
    45deg,
    var(--primary) 0%,
    var(--primary) 40%,
    var(--secondary) 60%,
    var(--secondary) 100%
  );
  padding: 18px 25px;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.hedqk4oa {
  background: none !important;
  box-shadow: none !important;
  text-align: center;
}

.kt8emdfm h4 {
  background: none !important;
  box-shadow: none !important;
  text-align: center;
  color: #222;
}

body {
  margin: 0;
  font-family: var(--font-family);
  line-height: var(--line-height-normal);
  background-color: var(--base-bg-color);
  color: var(--text-dark);
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

header {
  background: var(--primary);
  border-bottom: 1px solid var(--secondary);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 0;
}

.cfkbzadi {
  width: 150px;
  height: auto;
}

.cfkbzadi:hover {
  opacity: 0.9;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  transition: transform 0.3s ease-in-out;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
}

.mobile-nav-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .xkjvs5h0 h1 {
    font-size: 2rem !important;
  }

  nav {
    padding: 2px 0;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 200px;
    background-color: var(--primary);
    flex-direction: column;
    padding: 70px 1.5rem 2rem;
    transition: right 0.3s ease-in-out;
    gap: 0;
    z-index: 95;
  }

  .mobile-nav-toggle {
    z-index: 100;
  }

  .nav-links li {
    width: 100%;
    margin-bottom: 0;
    position: relative;
  }

  .nav-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    justify-content: flex-start;
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 0.5rem;
    transition: all 0.2s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .o4k6xwgc {
    max-width: 280px;
    aspect-ratio: 1/2;
    min-height: 200px;
  }

  .bs09grkr {
    aspect-ratio: 1/2;
    min-height: 200px;
  }
}

.uzverb7b {
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 0;
  /* max-width: 1280px; */
  margin: 0 auto;
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .uzverb7b {
    padding: 4rem 2rem;
  }
}

.uzverb7b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.ym3te2ra {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 993px) {
  .ym3te2ra {
    padding: 10rem 5rem;
  }
}

.xkjvs5h0 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.xkjvs5h0 h1 {
  color: white !important;
}

.sqkbm910 {
  flex: 1;
  text-align: left;
}

.m4okorpr {
  font-family: var(--font-family);
  color: var(--text);
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--letter-spacing-heading);
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.lzevdgpb {
  font-family: var(--font-family);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #eee; /* Lighter for better contrast */
  max-width: 600px;
  font-weight: 400;
}

.tluuybvr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.bny8j6g7 {
  display: flex;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.fntmn54v {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zl0t1r54 {
  font-size: 0.9rem;
  font-weight: 600;
}

.t86bhvxd {
  font-size: 0.9rem;
  color: white;
}

.e6ha7jkv {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.o4k6xwgc {
  position: relative;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.3s ease-out;
}

.o4k6xwgc:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

.bs09grkr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  max-width: 100%;
  max-height: 250px;
}

.mmjq14nr {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.kv830bo7 {
  position: absolute;
  top: 15px;
  right: -35px;
  background: linear-gradient(
    135deg,
    rgba(46, 204, 113, 0.9) 0%,
    rgba(39, 174, 96, 0.9) 100%
  );
  color: white;
  padding: 8px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.kv830bo7 svg {
  width: 12px;
  height: 12px;
  fill: white;
  flex-shrink: 0;
}

.ld1bibx5 {
  font-family: var(--font-family);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text);
  font-size: 1.1rem;
  padding: 1rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ld1bibx5:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(15, 139, 195, 0.4);
}

.gfygfmma {
  display: none;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
  .xkjvs5h0 {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .sqkbm910 {
    text-align: center;
  }

  .m4okorpr {
    font-size: 2.8rem;
  }

  .tluuybvr {
    align-items: center;
  }

  .o4k6xwgc {
    transform: perspective(1000px) rotateY(0) rotateX(5deg);
  }
  .gfygfmma {
    display: block;
  }
  .bhhhek5o {
    display: none;
  }
}

@media (max-width: 768px) {
  .uzverb7b {
    padding: 2rem 1.5rem 4rem 1.5rem;
  }

  .m4okorpr {
    font-size: 2.4rem;
  }

  .lzevdgpb {
    font-size: 1.1rem;
  }

  .ld1bibx5 {
    width: auto;
    min-width: 200px;
    max-width: 80%;
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .bny8j6g7 {
    width: auto;
    max-width: 80%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .m4okorpr {
    font-size: 2rem;
  }

  .lzevdgpb {
    font-size: 1rem;
  }

  .o4k6xwgc {
    max-width: 240px;
  }
}

/* Features Section Starts */

.b8vql9gu {
  padding: 1rem 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.y7q2kqha {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.y7q2kqha h2 {
  margin: 2rem auto 2.4rem auto;
  padding: 6px 20px;
}

.nw6fs0jk {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.prq4mbhz {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.qdwle46h {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qdwle46h::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 130px;
  height: 130px;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.2) 0%,
    rgba(108, 92, 231, 0.2) 100%
  );
  transform: rotate(45deg);
}

.pa1iqqln {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(15, 139, 195, 0.1),
    rgba(14, 125, 176, 0.1)
  );
  position: relative;
  z-index: 1;
}

.pa1iqqln::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  z-index: -1;
  opacity: 0.2;
}

.pa1iqqln img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.gluhr5dr {
  flex: 1;
}

.gluhr5dr p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  font-weight: 400;
}

.gluhr5dr h3 {
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 0.8rem;
  letter-spacing: var(--letter-spacing-heading);
}

.gluhr5dr h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 1.5px;
}

@media (max-width: 768px) {
  .b8vql9gu {
    padding: 0 1.5rem 2rem 1.5;
  }

  .nw6fs0jk {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .qdwle46h {
    padding: 1.5rem;
  }

  .gluhr5dr h3 {
    font-size: 1.3rem;
  }
}

/* Features Section Ends */

.o5ycvj2u {
  max-width: 1280px;
  margin: 1rem auto 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 10px;
}

.o5ycvj2u h1,
.o5ycvj2u h2,
.o5ycvj2u h3 {
  padding: 6px 20px;
  margin-top: 2rem;
}

.o5ycvj2u h2,
h2 {
  font-size: 1.2rem;
}

.o5ycvj2u h3,
h3 {
  font-size: 1rem;
}

.o5ycvj2u p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.mkdick1j {
  max-width: 1280px;
  background-color: #ffffff;
  margin: 1rem auto 0 auto;
  padding: 2rem 2rem 4rem 2rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.mkdick1j .kfaeop74 {
  max-width: 1280px;
  margin: 0 auto;
}

.mkdick1j h4 {
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 20px;
}

.kfaeop74 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  font-family: var(--font-family);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-dark);
  user-select: none;
  letter-spacing: -0.01em;
  font-size: 1rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-medium);
  line-height: 1.7;
  transition: height 0.3s ease-out;
  font-size: 0.95rem;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .mkdick1j {
    margin: 3rem auto 0 auto;
  }

  .mkdick1j,
  .bhl652da {
    padding: 2rem 1.5rem;
  }

  .mkdick1j h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1.25rem;
  }
}

.bhl652da {
  background-color: #ffffff;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem 2rem;
  border-radius: 10px;
}

.bhl652da .w4tr3d49 a {
  text-decoration: none;
  color: currentColor;
}

.bhl652da .w4tr3d49 {
  max-width: 1280px;
  margin: 3rem auto 0;
}

.bhl652da h4 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px 20px;
  font-size: 1.4rem;
}

.w4tr3d49 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.w4tr3d49 a {
  text-decoration: none;
  color: currentColor;
}

.kmdr1pt8 .em4uuejj {
  padding: 20px;
  border-radius: 20px;
  box-shadow: 1.5px 10.5px 31.5px -3px #ddd;
}

.kmdr1pt8 h2 {
  box-shadow: 1.5px 10.5px 31.5px -16px #ddd;
}

.kmdr1pt8 h1 {
  border-bottom: 1px solid var(--primary);
  padding-bottom: 8px;
}

.em4uuejj {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding-top: 30px;
}

.em4uuejj h2 {
  background: transparent;
  color: #222;
  box-shadow: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.2em; /* Use em instead of px */
  max-height: 2.4em; /* line-height × number of lines */
  margin: 0; /* Reset margins */
  padding: 0; /* Reset padding */
  margin-top: 40px;
}

.kms6xwxp {
  text-align: center;
  margin-top: 3rem;
}

.nsmp23cz {
  background: var(--secondary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  padding: 1rem 2.5rem;
  font-weight: 600;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  margin: 0 auto;
  margin-top: 0px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.plsenqzh {
  max-width: 200px;
  margin-bottom: 6px;
}

.s7fhn31o {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.6rem 2rem;
}

@media screen and (max-width: 768px) {
  .s7fhn31o {
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 2rem 2rem 2rem;
  }
}

.u3inmavl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: var(--text);
  max-width: 1280px;
}

.u3inmavl a {
  color: var(--text);
}

.vycfq897 p {
  color: var(--text);
}

@media (max-width: 768px) {
  .u3inmavl {
    gap: 1rem;
  }
}

/* download page starts */
.ubjt5yyi {
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-flex;
  gap: 2rem;
}

.satqg34v,
.lrayj0dh {
  color: white;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.zm5f1oho {
  background: white;
  border-radius: 12px;
  padding: 0.4rem 2rem 2rem 2rem;
}

@media (max-width: 768px) {
  .ubjt5yyi {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
}
/* download page ends */

/* blogs list starts */
.kmdr1pt8 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background-color: #fff;
}

/* Page header section */
.tg7fs95q {
  margin-bottom: 3rem;
  text-align: center;
}

.tg7fs95q h1 {
  font-family: var(--font-family);
  font-size: 2.5rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .kmdr1pt8 {
    padding: 1.5rem 1rem;
  }

  .tg7fs95q {
    margin-bottom: 2rem;
  }

  .tg7fs95q h1 {
    font-size: 2rem;
  }
}

.ic05ggqs {
  width: auto;
  height: 200px;
  max-width: 100%;
}

/* blogs list ends */

/* single blog page starts */

/* Blog post main container */
.vs8obvy0 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.vs8obvy0 article {
  background: white;
  padding: 1rem 0;
  border-radius: 12px;
}

/* Article header */
.ugymd7v9 {
  margin-bottom: 2rem;
  text-align: center;
  padding: 4px 0;
  background: transparent;
  box-shadow: none;
}

.ugymd7v9 h1 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: #222;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding: 0 10px;
}

/* Post featured image */
.rp6n5zbi {
  display: flex;
  align-items: center;
  justify-content: center;
}

.q1njb0ke {
  width: auto;
  height: 250px;
  margin-bottom: 2rem;
  max-width: 90%;
}

/* Post content */
.hqwv9pa3 {
  margin: 0 auto;
  line-height: 1.8;
  padding: 0 2rem;
}

/* Style headings within content */
.hqwv9pa3 h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  padding: 6px 20px;
}

.hqwv9pa3 h3 {
  font-size: 1.3rem;
  margin: 1.8rem 0 0.8rem;
  padding: 6px 20px;
  background: none;
  color: #333;
  box-shadow: 1.5px 3px 14px -6px #ddd;
}

/* Style paragraphs within content */
.hqwv9pa3 p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1rem;
}

/* Post navigation */
.c7uq1vqt {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.mw48555s {
  display: inline-block;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mw48555s:hover {
  color: #2d3748;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vs8obvy0 {
    padding: 1.5rem 1rem;
  }

  .ugymd7v9 h1 {
    font-size: 1.6rem;
  }

  .q1njb0ke {
    max-height: 400px;
  }

  .hqwv9pa3 {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .ugymd7v9 h1 {
    font-size: 1.4rem;
  }

  .q1njb0ke {
    max-height: 300px;
  }

  .hqwv9pa3 h2 {
    font-size: 1.5rem;
  }

  .hqwv9pa3 h3 {
    font-size: 1.25rem;
  }
}

/* single blog page ends */

/* single page starts */
.nmb6tmhm {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #ffffff;
}

.nmb6tmhm h1 {
  font-size: 1.6rem;
  color: #222;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding: 20px 10px;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--primary);
  margin-top: 0;
}

.nmb6tmhm h3,
.nmb6tmhm h4 {
  background: transparent;
  color: #333;
  box-shadow: none;
}

.fqux74c4 {
  border-radius: 1rem;
  border-radius: 10px;
  background: #fff;
  padding: 2rem 2rem;
  line-height: 1.6;
}

.fqux74c4 p {
  margin-bottom: 15px;
}

/* single page ends */

.al2tq3we {
  margin-top: 1.6rem;
  position: relative;
  display: inline-block;
  font-family: var(--body-font);
}

.al2tq3we select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px 36px 8px 16px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: white;
  cursor: pointer;
  color: #333;
  min-width: 160px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.al2tq3we::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  pointer-events: none;
}

.al2tq3we select:hover {
  border-color: #d0d0d0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.al2tq3we select:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.15);
}

.al2tq3we select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.al2tq3we select option {
  padding: 8px;
  font-size: 14px;
}

/* Screenshots section starts */
.gpg6mru9 {
  padding: 2rem;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gpg6mru9 h2 {
  text-align: center;
  margin: 1.5rem auto 2rem auto;
  padding: 6px 20px;
  max-width: 1280px;
}

.szbyxuzu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.djf55eyh {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  padding-bottom: 10px;
}

.djf55eyh::-webkit-scrollbar {
  height: 8px;
}

.djf55eyh::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.djf55eyh::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.djf55eyh::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.p8epat1e {
  flex: 0 0 auto;
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.p8epat1e img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Mobile styles */
@media (max-width: 768px) {
  .gpg6mru9 {
    padding: 2rem 0;
  }
  
  .gpg6mru9 h2 {
    max-width: 90%;
    padding: 6px 15px;
  }
  
  .szbyxuzu {
    padding: 0 10px;
  }
  
  .djf55eyh {
    gap: 1rem;
    padding-bottom: 15px;
  }
  
  .p8epat1e {
    width: 180px;
    min-height: 300px;
  }
}

/* Large screen styles */
@media (min-width: 1200px) {
  .p8epat1e {
    width: 300px;
  }
}
/* Screenshot Section ends */

.hydmqj34 {
  margin-top: 20px;
}

/* Table Design */
.iqo6nt2k {
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 0;
  margin: 40px auto;
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.iqo6nt2k::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 3px 3px 0 0;
}

.iqo6nt2k table {
  width: 100%;
  border-collapse: collapse;
}

.iqo6nt2k th,
.iqo6nt2k td {
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.iqo6nt2k tr:last-child th,
.iqo6nt2k tr:last-child td {
  border-bottom: none;
}

.iqo6nt2k tr:hover {
  background-color: rgba(15, 139, 195, 0.03);
}

.iqo6nt2k th {
  font-weight: 600;
  color: var(--text-dark);
}

.iqo6nt2k caption {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--font-family);
  letter-spacing: var(--letter-spacing-heading);
}

.iqo6nt2k a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.iqo6nt2k a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

@media (min-width: 769px) {
  .tyhni2tb {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .iqo6nt2k {
    margin: 54px auto 30px auto;
    padding: 20px;
    border-radius: 12px;
    max-width: 90%;
  }

  .tyhni2tb {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .iqo6nt2k {
    padding: 15px 0;
    border-radius: 10px;
    width: 90%;
  }

  .iqo6nt2k table {
    width: 100%;
    min-width: 100%;
  }

  .iqo6nt2k th,
  .iqo6nt2k td {
    font-size: 0.9rem;
    padding: 12px 20px;
    word-break: break-word;
  }

  .iqo6nt2k caption {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  /* Force table to not be like tables on mobile */
  .fct2h2jl table,
  .fct2h2jl thead,
  .fct2h2jl tbody,
  .fct2h2jl th,
  .fct2h2jl td,
  .fct2h2jl tr {
    display: block;
  }

  /* Hide table headers on mobile stacked view */
  .fct2h2jl thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .fct2h2jl td {
    /* Make like a "row" */
    border: none;
    position: relative;
    padding-left: 50%;
    text-align: right;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .fct2h2jl td:before {
    /* Label the data */
    content: attr(data-label);
    position: absolute;
    left: 12px;
    width: 45%;
    text-align: left;
    font-weight: 600;
  }

  .fct2h2jl tr:last-child td:last-child {
    border-bottom: none;
  }
}

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

.h9p2ml6s {
  width: 200px;
  justify-content: center;
}

.sqkbm910 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 993px) {
  .sqkbm910 {
    align-items: start;
  }
}

.f9i468f5 {
  margin-bottom: 0;
}

.q01oflmp {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}

.mnarpm88 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.mnarpm88 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#content-main {
  background-color: #ffffff;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 10px;
  border-radius: 10px;
}

/* Modern ul and li Styles */
#content-main ul {
  padding-left: 0;
  margin: 1.5rem 0;
  position: relative;
}

#content-main ul li,
.nmb6tmhm ul li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  margin-bottom: 0.8rem;
  list-style: none;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: rgba(248, 249, 250, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#content-main ul li:hover,
.nmb6tmhm ul li:hover {
  background: rgba(248, 249, 250, 0.8);
  border-left: 6px solid var(--secondary);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#content-main ul li::before,
.nmb6tmhm ul li::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#content-main ul li::after,
.nmb6tmhm ul li::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--text);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#content-main ul li:hover::before,
.nmb6tmhm ul li:hover::before {
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#content-mainul li:hover::after,
.nmb6tmhm li:hover::after {
  transform: translateY(-50%) scale(1.1);
  background: rgba(255, 255, 255, 0.9);
}

/* Nested ul styles */
#content-main ul ul,
.nmb6tmhm ul ul {
  margin: 0.5rem 0 1rem 1rem;
}

#content-main ul ul li,
.nmb6tmhm ul ul li {
  padding: 0.8rem 1rem 0.8rem 2.8rem;
  background: rgba(248, 249, 250, 0.3);
  border-left: 3px solid var(--primary);
  margin-bottom: 0.6rem;
}

#content-main ul ul li::before,
.nmb6tmhm ul ul li::before {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

#content-main ul ul li::after,
.nmb6tmhm ul ul li::after {
  width: 4px;
  height: 4px;
}

/* Ordered list styles */
#content-main ol,
.nmb6tmhm ol {
  padding-left: 0;
  margin: 1.5rem 0;
  counter-reset: custom-counter;
}

#content-main ol li,
.nmb6tmhm ol li {
  position: relative;
  padding: 0.75rem 0 0.75rem 3.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid var(--primary);
  counter-increment: custom-counter;
}

#content-main ol li:hover,
.nmb6tmhm ol li:hover {
  border-left: 5px solid var(--secondary);
  transform: translateX(5px);
  box-shadow: 0 2px 8px var(--primary);
}

#content-main ol li::before,
.nmb6tmhm ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px var(--primary);
  transition: all 0.3s ease;
}

#content-main ol li:hover::before,
.nmb6tmhm ol li:hover::before {
  transform: translateY(-50%) scale(1.1) rotate(5deg);
  box-shadow: 0 4px 8px var(--primary);
}

/* Nested ol styles */
#content-main ol ol,
.nmb6tmhm ol ol {
  margin: 0.5rem 0 1rem 1rem;
}

#content-main ol ol li,
.nmb6tmhm ol ol li {
  padding-left: 3rem;
  border-left: 2px solid var(--primary);
}

#content-main ol ol li::before,
.nmb6tmhm ol ol li::before {
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Special list styles for content areas */
.o5ycvj2u ul li,
.hqwv9pa3 ul li,
.fqux74c4 ul li {
  border-radius: 10px;
  padding: 1rem 1rem 1rem 3.5rem;
  border-left: 4px solid var(--primary);
}

.o5ycvj2u ol li,
.hqwv9pa3 ol li,
.fqux74c4 ol li {
  border-radius: 10px;
  padding: 1rem 1rem 1rem 4rem;
  border-left: 4px solid var(--primary);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  ul li {
    padding: 0.6rem 0 0.6rem 2.5rem;
    font-size: 0.95rem;
  }

  ul li::before {
    left: 0.8rem;
    width: 10px;
    height: 10px;
  }

  ul li::after {
    left: 1rem;
    width: 5px;
    height: 5px;
  }

  ol li {
    padding: 0.6rem 0 0.6rem 3rem;
    font-size: 0.95rem;
  }

  ol li::before {
    left: 0.8rem;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
  }
}

.hqwv9pa3 ul,
.nmb6tmhm ul {
  padding-left: 0;
}

