
    .page-5-sao {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; 
      background-color: #1a1a1a; 
      line-height: 1.6;
      padding-top: 10px; 
    }

    .page-5-sao__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 15px;
      box-sizing: border-box;
    }

    .page-5-sao__section-title {
      color: #ffd700; 
      text-align: center;
      margin-bottom: 25px;
      font-size: 2em;
      font-weight: bold;
    }

    .page-5-sao__section-description {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      color: #cccccc;
    }

    /* Hero Section */
    .page-5-sao__hero-section {
      text-align: center;
      padding: 40px 0;
      background-color: #222;
      position: relative;
      overflow: hidden;
    }

    .page-5-sao__hero-title {
      font-size: 2.5em;
      color: #ffffff;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .page-5-sao__hero-title strong {
      color: #ffd700; 
    }

    .page-5-sao__hero-description {
      font-size: 1.1em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #ccc;
    }

    .page-5-sao__hero-cta-button {
      display: inline-block;
      background-color: #00cc66; 
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      margin-top: 20px;
    }

    .page-5-sao__hero-cta-button:hover {
      background-color: #00994d;
    }

    .page-5-sao__hero-image-wrapper {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-5-sao__hero-image {
      max-width: 90%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    /* Floating Buttons */
    .page-5-sao__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-5-sao__floating-button {
      display: block;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-5-sao__floating-button--register {
      background-color: #ffd700; 
      color: #1a1a1a;
    }

    .page-5-sao__floating-button--register:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    .page-5-sao__floating-button--login {
      background-color: #00cc66; 
      color: #ffffff;
    }

    .page-5-sao__floating-button--login:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

    /* Product Categories */
    .page-5-sao__product-categories {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-5-sao__products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center; 
    }

    .page-5-sao__product-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-5-sao__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-5-sao__product-image {
      width: 100%;
      height: 200px; 
      object-fit: cover;
      display: block;
      margin-bottom: 15px;
    }

    .page-5-sao__product-title {
      color: #ffd700;
      font-size: 1.4em;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-5-sao__product-text {
      color: #ccc;
      font-size: 0.95em;
      padding: 0 15px;
    }

    /* Why Choose Us Section */
    .page-5-sao__why-choose-us {
      padding: 60px 0;
      background-color: #222;
    }

    .page-5-sao__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-5-sao__feature-item {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-5-sao__feature-icon {
      width: 200px;
      height: 200px;
      max-width: 100%;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-5-sao__feature-title {
      color: #00cc66;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-5-sao__feature-description {
      color: #ccc;
      font-size: 0.95em;
    }

    /* Promotions Section */
    .page-5-sao__promotions-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-5-sao__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
    }

    .page-5-sao__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
    }

    .page-5-sao__promo-title {
      color: #ffd700;
      font-size: 1.5em;
      margin-bottom: 15px;
      padding: 0 20px;
    }

    .page-5-sao__promo-text {
      color: #ccc;
      font-size: 1em;
      margin-bottom: 25px;
      padding: 0 20px;
    }

    .page-5-sao__promo-button {
      display: inline-block;
      background-color: #00cc66;
      color: #ffffff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-bottom: 20px;
    }

    .page-5-sao__promo-button:hover {
      background-color: #00994d;
    }

    /* Providers and Payments Sections */
    .page-5-sao__providers-section,
    .page-5-sao__payments-section {
      padding: 60px 0;
      background-color: #222;
    }

    .page-5-sao__providers-grid,
    .page-5-sao__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
      gap: 20px;
      justify-content: center;
      align-items: center;
    }

    .page-5-sao__provider-link,
    .page-5-sao__payment-link {
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px;
      height: 100px; 
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-5-sao__provider-link:hover,
    .page-5-sao__payment-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-5-sao__provider-logo,
    .page-5-sao__payment-logo {
      max-width: 100%;
      max-height: 70px; 
      height: auto;
      object-fit: contain;
      transition: transform 0.2s ease; 
    }

    /* Social Media Section */
    .page-5-sao__social-section {
      padding: 60px 0;
      background-color: #1a1a1a;
    }

    .page-5-sao__social-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-5-sao__social-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #e0e0e0;
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 20px 10px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }

    .page-5-sao__social-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      background-color: #3a3a3a;
    }

    .page-5-sao__social-icon {
      width: 200px;
      height: 200px;
      max-width: 100%;
      margin-bottom: 10px;
      object-fit: contain;
    }

    .page-5-sao__social-link span {
      font-size: 1em;
      font-weight: bold;
      color: #ffd700;
    }

    /* FAQ Section */
    .page-5-sao__faq-section {
      padding: 60px 0 100px 0; 
      background-color: #222;
    }

    .page-5-sao__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-5-sao__faq-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-5-sao__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333;
      transition: background-color 0.3s ease;
    }

    .page-5-sao__faq-question:hover {
      background-color: #444;
    }

    .page-5-sao__faq-title {
      font-size: 1.2em;
      color: #ffd700;
      margin: 0;
      flex-grow: 1;
      pointer-events: none; 
    }

    .page-5-sao__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #00cc66;
      margin-left: 15px;
      width: 25px; 
      text-align: center;
      pointer-events: none; 
      transition: transform 0.3s ease;
    }

    .page-5-sao__faq-item.active .page-5-sao__faq-toggle {
      transform: rotate(45deg); 
      color: #ff0000; 
    }

    .page-5-sao__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-5-sao__faq-item.active .page-5-sao__faq-answer {
      max-height: 2000px !important; 
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-5-sao__faq-answer p {
      margin: 0;
      color: #ccc;
      font-size: 1em;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-5-sao__hero-title {
        font-size: 2em;
      }

      .page-5-sao__section-title {
        font-size: 1.8em;
      }

      .page-5-sao__hero-image-wrapper {
        margin-top: 20px;
      }

      .page-5-sao__hero-image {
        max-width: 100%;
      }

      .page-5-sao__products-grid,
      .page-5-sao__features-grid,
      .page-5-sao__providers-grid,
      .page-5-sao__payments-grid,
      .page-5-sao__social-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
      }

      .page-5-sao__product-card,
      .page-5-sao__feature-item,
      .page-5-sao__promo-card,
      .page-5-sao__provider-link,
      .page-5-sao__payment-link,
      .page-5-sao__social-link {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-5-sao__product-image,
      .page-5-sao__promo-image {
        height: 180px; 
      }

      /* List item responsive requirements */
      .page-5-sao__faq-list {
        padding: 0 10px !important;
      }
      .page-5-sao__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-5-sao__faq-question, .page-5-sao__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-5-sao__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-5-sao__floating-buttons {
        bottom: 15px;
        gap: 10px;
        width: calc(100% - 30px); 
        justify-content: center;
      }
      .page-5-sao__floating-button {
        flex: 1; 
        padding: 10px 15px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-5-sao__hero-title {
        font-size: 1.8em;
      }
      .page-5-sao__section-title {
        font-size: 1.6em;
      }
      .page-5-sao__hero-cta-button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-5-sao__floating-buttons {
        width: calc(100% - 20px);
        bottom: 10px;
      }
      .page-5-sao__floating-button {
        padding: 8px 10px;
        font-size: 0.9em;
      }
    }
  