
    .page-79-king-3 {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-79-king-3__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #222;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-79-king-3__hero-section {
      background: linear-gradient(135deg, #333, #000);
      padding: 60px 20px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Adhering to fixed navbar offset */
    }

    .page-79-king-3__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-79-king-3__hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 300px;
    }

    .page-79-king-3__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      text-align: center;
    }

    .page-79-king-3__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #bbb;
      text-align: center;
    }

    .page-79-king-3__cta-button {
      display: inline-block;
      background-color: #e44d26;
      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.2s ease;
      border: none;
      cursor: pointer;
      margin: 0 10px;
    }

    .page-79-king-3__cta-button:hover {
      background-color: #f26522;
      transform: translateY(-2px);
    }

    .page-79-king-3__cta-button--secondary {
      background-color: #007bff;
    }

    .page-79-king-3__cta-button--secondary:hover {
      background-color: #0056b3;
    }

    .page-79-king-3__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
    }

    .page-79-king-3__floating-button {
      flex: 1;
      text-align: center;
      background-color: #e44d26;
      color: #fff;
      padding: 12px 0;
      margin: 0 5px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-79-king-3__floating-button:hover {
      background-color: #f26522;
    }

    .page-79-king-3__floating-button--login {
      background-color: #007bff;
    }

    .page-79-king-3__floating-button--login:hover {
      background-color: #0056b3;
    }

    .page-79-king-3__section-title {
      font-size: 2em;
      color: #ffd700;
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-79-king-3__text-content p {
      margin-bottom: 15px;
      color: #ddd;
    }

    .page-79-king-3__text-content strong {
      color: #ffd700;
    }

    .page-79-king-3__gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      justify-items: center; /* Center items in the grid */
    }

    .page-79-king-3__gallery-item {
      background-color: #333;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      text-align: center;
      width: 100%;
      max-width: 400px; /* Limit max width for individual items */
      box-sizing: border-box;
    }

    .page-79-king-3__gallery-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
      max-width: 100% !important;
      box-sizing: border-box !important;
    }

    .page-79-king-3__gallery-image:hover {
      transform: scale(1.05);
    }

    .page-79-king-3__gallery-caption {
      padding: 15px;
      font-weight: bold;
      color: #ffd700;
      font-size: 1.1em;
    }

    .page-79-king-3__list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .page-79-king-3__list-item {
      background-color: #333;
      padding: 15px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      color: #ddd;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      width: 100%;
    }

    .page-79-king-3__list-item::before {
      content: '✓';
      color: #4CAF50;
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-79-king-3__faq-section {
      margin-top: 40px;
    }

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

    .page-79-king-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #444;
      color: #ffd700;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-79-king-3__faq-question:hover {
      background-color: #555;
    }

    .page-79-king-3__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #ffd700; /* Ensure contrast */
    }

    .page-79-king-3__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event */
      color: #ffd700;
    }

    .page-79-king-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #2a2a2a;
      color: #ddd;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-79-king-3__faq-item.active .page-79-king-3__faq-answer {
      max-height: 2000px !important;
      padding: 20px !important;
      opacity: 1;
    }

    .page-79-king-3__faq-item.active .page-79-king-3__faq-toggle {
      content: '−';
    }

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

      .page-79-king-3__hero-subtitle {
        font-size: 1em;
      }

      .page-79-king-3__cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
        margin: 5px;
      }

      .page-79-king-3__section {
        padding: 20px 15px;
        margin-bottom: 15px;
      }

      .page-79-king-3__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
      }

      .page-79-king-3__gallery {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-79-king-3__gallery-image {
        height: 200px;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-79-king-3__list {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-79-king-3__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-79-king-3__faq-answer {
        padding: 0 15px;
      }

      .page-79-king-3__faq-item.active .page-79-king-3__faq-answer {
        padding: 15px !important;
      }

      .page-79-king-3__floating-buttons {
        padding: 8px 0;
      }

      .page-79-king-3__floating-button {
        padding: 10px 0;
        font-size: 0.9em;
      }
    }
  