.page-what-is-88cld-code {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg-color: #11271B;
  --bg-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Default text color for the page, suitable for dark background */
  background-color: var(--bg-color); /* Main page background */
}

.page-what-is-88cld-code__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-what-is-88cld-code__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-what-is-88cld-code__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-what-is-88cld-code__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-what-is-88cld-code__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  color: var(--text-main-color);
}

.page-what-is-88cld-code__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-what-is-88cld-code__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-what-is-88cld-code__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-what-is-88cld-code__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-what-is-88cld-code__introduction-section,
.page-what-is-88cld-code__applications-section,
.page-what-is-88cld-code__security-section,
.page-what-is-88cld-code__conclusion-section,
.page-what-is-88cld-code__faq-section {
  padding: 60px 0;
}

.page-what-is-88cld-code__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold-color);
  position: relative;
}

.page-what-is-88cld-code__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-what-is-88cld-code__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
  text-align: justify;
}

.page-what-is-88cld-code__feature-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

.page-what-is-88cld-code__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-what-is-88cld-code__feature-card {
  background-color: var(--bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-what-is-88cld-code__feature-card:hover {
  transform: translateY(-5px);
}

.page-what-is-88cld-code__feature-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-what-is-88cld-code__feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-what-is-88cld-code__feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color);
}

.page-what-is-88cld-code__sub-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-what-is-88cld-code__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-what-is-88cld-code__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary-color);
}

.page-what-is-88cld-code__list-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.2rem;
  top: 0;
}

.page-what-is-88cld-code__how-to-use-section {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
}

.page-what-is-88cld-code__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-what-is-88cld-code__step-card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.page-what-is-88cld-code__step-card:hover {
  transform: translateY(-5px);
}

.page-what-is-88cld-code__step-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-what-is-88cld-code__step-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-what-is-88cld-code__step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color);
}

.page-what-is-88cld-code__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-what-is-88cld-code__cta-button--dark-bg {
  background: linear-gradient(180deg, var(--glow-color) 0%, var(--primary-color) 100%);
  box-shadow: 0 4px 20px rgba(87, 227, 141, 0.4);
}

.page-what-is-88cld-code__cta-button--dark-bg:hover {
  box-shadow: 0 6px 25px rgba(87, 227, 141, 0.6);
}

.page-what-is-88cld-code__future-section {
  background-color: var(--bg-color);
  color: var(--text-main-color);
}

.page-what-is-88cld-code__faq-list {
  margin-top: 40px;
}

.page-what-is-88cld-code__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-what-is-88cld-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-what-is-88cld-code__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-what-is-88cld-code__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold-color);
}

.page-what-is-88cld-code__faq-item[open] .page-what-is-88cld-code__faq-toggle {
  transform: rotate(45deg);
}

.page-what-is-88cld-code__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color);
}

.page-what-is-88cld-code__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

.page-what-is-88cld-code__conclusion-section {
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-what-is-88cld-code__hero-content {
    padding: 15px;
  }

  .page-what-is-88cld-code__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-what-is-88cld-code__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }

  .page-what-is-88cld-code__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .page-what-is-88cld-code__sub-section-title {
    font-size: 1.6rem;
  }

  .page-what-is-88cld-code__text-block,
  .page-what-is-88cld-code__list-item,
  .page-what-is-88cld-code__feature-description,
  .page-what-is-88cld-code__step-description,
  .page-what-is-88cld-code__faq-answer {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-what-is-88cld-code__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-what-is-88cld-code__hero-content {
    padding: 10px;
  }

  .page-what-is-88cld-code__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-what-is-88cld-code__subtitle {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }

  .page-what-is-88cld-code__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-what-is-88cld-code__introduction-section,
  .page-what-is-88cld-code__feature-section,
  .page-what-is-88cld-code__applications-section,
  .page-what-is-88cld-code__how-to-use-section,
  .page-what-is-88cld-code__security-section,
  .page-what-is-88cld-code__future-section,
  .page-what-is-88cld-code__faq-section,
  .page-what-is-88cld-code__conclusion-section {
    padding: 40px 0;
  }

  .page-what-is-88cld-code__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 20px;
  }

  .page-what-is-88cld-code__sub-section-title {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-what-is-88cld-code__feature-grid,
  .page-what-is-88cld-code__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-what-is-88cld-code__feature-card,
  .page-what-is-88cld-code__step-card {
    padding: 20px;
  }

  .page-what-is-88cld-code__feature-title,
  .page-what-is-88cld-code__step-title {
    font-size: 1.4rem;
  }

  .page-what-is-88cld-code__list-item {
    padding-left: 25px;
  }

  .page-what-is-88cld-code__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-what-is-88cld-code__faq-answer {
    padding: 0 15px 15px 15px;
  }

  /* Mobile responsive for images, videos, and buttons */
  .page-what-is-88cld-code img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-what-is-88cld-code__hero-image-wrapper,
  .page-what-is-88cld-code__feature-card,
  .page-what-is-88cld-code__step-card,
  .page-what-is-88cld-code__container,
  .page-what-is-88cld-code__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-what-is-88cld-code__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}

@media (max-width: 480px) {
  .page-what-is-88cld-code__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-what-is-88cld-code__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-what-is-88cld-code__sub-section-title {
    font-size: 1.2rem;
  }

  .page-what-is-88cld-code__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}