
    .page-79-so-do {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
    }

    .page-79-so-do__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-79-so-do__hero-section {
      position: relative;
      background: linear-gradient(135deg, #4CAF50, #2E7D32);
      color: #fff;
      text-align: center;
      padding: 60px 0 20px;
      overflow: hidden;
      padding-top: 10px; /* Adjusted for header offset */
    }

    .page-79-so-do__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 20px auto 0;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .page-79-so-do__hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .page-79-so-do__main-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
      color: #FFEB3B; /* Yellow for contrast */
    }

    .page-79-so-do__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #E8F5E9;
    }

    .page-79-so-do__button {
      display: inline-block;
      background-color: #FF5722; /* Orange for call to action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-79-so-do__button:hover {
      background-color: #E64A19;
      transform: translateY(-3px);
    }

    .page-79-so-do__section {
      padding: 50px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-79-so-do__section--dark {
      background-color: #263238;
      color: #fff;
    }

    .page-79-so-do__section-title {
      font-size: 2.2em;
      color: #2E7D32;
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-79-so-do__section--dark .page-79-so-do__section-title {
      color: #FFEB3B;
    }

    .page-79-so-do__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .page-79-so-do__card {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid #eee;
    }

    .page-79-so-do__card:hover {
      transform: translateY(-5px);
    }

    .page-79-so-do__section--dark .page-79-so-do__card {
      background-color: #37474F;
      color: #E0E0E0;
      border-color: #455A64;
    }

    .page-79-so-do__card-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-79-so-do__card-title {
      font-size: 1.5em;
      color: #2E7D32;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-79-so-do__section--dark .page-79-so-do__card-title {
      color: #FFEB3B;
    }

    .page-79-so-do__card-description {
      font-size: 1em;
      color: #555;
    }

    .page-79-so-do__section--dark .page-79-so-do__card-description {
      color: #B0BEC5;
    }

    .page-79-so-do__features-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-79-so-do__feature-item {
      background-color: #E8F5E9;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      text-align: left;
      box-sizing: border-box;
      border-left: 5px solid #4CAF50;
    }

    .page-79-so-do__feature-item-text {
      font-size: 1.1em;
      color: #333;
      margin-left: 15px;
    }

    .page-79-so-do__section--dark .page-79-so-do__feature-item {
      background-color: #37474F;
      color: #E0E0E0;
      border-left-color: #FFEB3B;
    }

    .page-79-so-do__section--dark .page-79-so-do__feature-item-text {
      color: #E0E0E0;
    }

    .page-79-so-do__faq-section {
      padding: 50px 0;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-79-so-do__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-79-so-do__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #E8F5E9;
      color: #2E7D32;
      font-weight: bold;
      cursor: pointer;
      user-select: none;
      border-bottom: 1px solid #ddd;
    }

    .page-79-so-do__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from interfering with click */
      color: #2E7D32;
    }

    .page-79-so-do__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none; /* Prevent toggle icon from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-79-so-do__faq-item.active .page-79-so-do__faq-toggle {
      transform: rotate(45deg);
    }

    .page-79-so-do__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

    .page-79-so-do__faq-item.active .page-79-so-do__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-79-so-do__cta-section {
      text-align: center;
      padding: 60px 0;
      background-color: #4CAF50;
      color: #fff;
      margin-top: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-79-so-do__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #FFEB3B;
    }

    .page-79-so-do__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #E8F5E9;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-79-so-do__main-title {
        font-size: 2em;
      }

      .page-79-so-do__hero-description {
        font-size: 1em;
      }

      .page-79-so-do__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-79-so-do__section-title {
        font-size: 1.8em;
      }

      .page-79-so-do__grid {
        grid-template-columns: 1fr;
      }

      .page-79-so-do__card-image {
        max-width: 250px;
      }

      .page-79-so-do__features-list {
        grid-template-columns: 1fr;
        padding: 0;
      }

      .page-79-so-do__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-79-so-do__faq-question {
        padding: 12px 15px;
      }

      .page-79-so-do__faq-question h3 {
        font-size: 1.1em;
      }

      .page-79-so-do__faq-answer {
        padding: 0 10px;
      }

      .page-79-so-do__faq-item.active .page-79-so-do__faq-answer {
        padding: 15px 10px !important;
      }

      .page-79-so-do__cta-title {
        font-size: 2em;
      }

      .page-79-so-do__cta-description {
        font-size: 1em;
      }

      .page-79-so-do__container {
        padding: 0 10px;
      }

      /* Image responsiveness */
      .page-79-so-do__hero-image,
      .page-79-so-do__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-79-so-do__main-title {
        font-size: 1.8em;
      }
      .page-79-so-do__hero-section {
        padding-top: 5px;
      }
    }
  