
    :root {
      --page-hit-2-sexy-primary-color: #e02b2b; /* Đỏ tươi */
      --page-hit-2-sexy-secondary-color: #ffc107; /* Vàng hổ phách */
      --page-hit-2-sexy-text-color: #ffffff; /* Trắng */
      --page-hit-2-sexy-background-dark: #1a1a1a; /* Nền tối */
      --page-hit-2-sexy-background-light: #2c2c2c; /* Nền sáng hơn */
      --page-hit-2-sexy-accent-color: #007bff; /* Xanh dương */
      --page-hit-2-sexy-border-color: #444; /* Màu viền */
      --page-hit-2-sexy-gap: 20px;
    }

    .page-hit-2-sexy {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-hit-2-sexy-text-color);
      background-color: var(--page-hit-2-sexy-background-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-hit-2-sexy__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--page-hit-2-sexy-gap);
      box-sizing: border-box;
    }

    .page-hit-2-sexy__section {
      padding: 40px var(--page-hit-2-sexy-gap);
      margin-bottom: var(--page-hit-2-sexy-gap);
      background-color: var(--page-hit-2-sexy-background-light);
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-hit-2-sexy__section--dark {
      background-color: var(--page-hit-2-sexy-background-dark);
    }

    .page-hit-2-sexy__hero-section {
      background: linear-gradient(135deg, var(--page-hit-2-sexy-background-dark), #000);
      padding-top: 10px; /* Decorative spacing, assuming body has main offset */
      padding-bottom: 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-hit-2-sexy__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-hit-2-sexy__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-hit-2-sexy__hero-title {
      font-size: 3.5em;
      color: var(--page-hit-2-sexy-primary-color);
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
      font-weight: bold;
    }

    .page-hit-2-sexy__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-hit-2-sexy-secondary-color);
      margin-bottom: 30px;
    }

    .page-hit-2-sexy__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-hit-2-sexy-primary-color);
      color: var(--page-hit-2-sexy-text-color);
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-hit-2-sexy__button:hover {
      background-color: #ff4d4d;
      transform: translateY(-3px);
    }

    .page-hit-2-sexy__button--secondary {
      background-color: var(--page-hit-2-sexy-accent-color);
      margin-left: var(--page-hit-2-sexy-gap);
    }

    .page-hit-2-sexy__button--secondary:hover {
      background-color: #0056b3;
    }

    .page-hit-2-sexy__heading {
      font-size: 2.5em;
      color: var(--page-hit-2-sexy-primary-color);
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-hit-2-sexy__heading::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-hit-2-sexy-secondary-color);
      border-radius: 2px;
    }

    .page-hit-2-sexy__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-hit-2-sexy__image-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: var(--page-hit-2-sexy-gap);
      justify-content: center;
      margin-top: 30px;
    }

    .page-hit-2-sexy__image-wrapper {
      flex: 1 1 calc(33% - var(--page-hit-2-sexy-gap));
      min-width: 280px;
      background-color: var(--page-hit-2-sexy-background-dark);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-hit-2-sexy__image-wrapper:hover {
      transform: translateY(-5px);
    }

    .page-hit-2-sexy__image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-hit-2-sexy__image-caption {
      padding: 15px;
      font-size: 1.05em;
      font-weight: bold;
      color: var(--page-hit-2-sexy-secondary-color);
      text-align: center;
    }

    .page-hit-2-sexy__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--page-hit-2-sexy-gap);
      margin-top: 30px;
    }

    .page-hit-2-sexy__feature-item {
      background-color: var(--page-hit-2-sexy-background-dark);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
      border-bottom: 4px solid var(--page-hit-2-sexy-primary-color);
      box-sizing: border-box;
    }

    .page-hit-2-sexy__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: inline-block;
      max-width: 100%;
      object-fit: contain;
    }

    .page-hit-2-sexy__feature-title {
      font-size: 1.4em;
      color: var(--page-hit-2-sexy-secondary-color);
      margin-bottom: 10px;
    }

    .page-hit-2-sexy__feature-description {
      font-size: 0.95em;
      color: #ccc;
    }

    .page-hit-2-sexy__cta-section {
      text-align: center;
      padding: 50px var(--page-hit-2-sexy-gap);
      background-color: var(--page-hit-2-sexy-primary-color);
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-hit-2-sexy__cta-title {
      font-size: 2.2em;
      color: var(--page-hit-2-sexy-text-color);
      margin-bottom: 20px;
    }

    .page-hit-2-sexy__cta-description {
      font-size: 1.2em;
      color: #eee;
      margin-bottom: 30px;
    }

    .page-hit-2-sexy__faq-section {
      margin-top: 40px;
    }

    .page-hit-2-sexy__faq-item {
      background-color: var(--page-hit-2-sexy-background-dark);
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-hit-2-sexy__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: var(--page-hit-2-sexy-background-light);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid var(--page-hit-2-sexy-border-color);
    }

    .page-hit-2-sexy__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-hit-2-sexy__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-hit-2-sexy-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-hit-2-sexy__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-hit-2-sexy-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      line-height: 1;
    }

    .page-hit-2-sexy__faq-item.active .page-hit-2-sexy__faq-toggle {
      transform: rotate(45deg);
    }

    .page-hit-2-sexy__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #ccc;
    }

    .page-hit-2-sexy__faq-item.active .page-hit-2-sexy__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain any content */
      padding: 20px !important;
      opacity: 1;
    }

    @media (max-width: 768px) {
      .page-hit-2-sexy__hero-title {
        font-size: 2.5em;
      }

      .page-hit-2-sexy__hero-subtitle {
        font-size: 1.2em;
      }

      .page-hit-2-sexy__heading {
        font-size: 2em;
      }

      .page-hit-2-sexy__button {
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-hit-2-sexy__button--secondary {
        margin-left: 0;
        margin-top: 15px;
      }

      .page-hit-2-sexy__image-gallery {
        flex-direction: column;
      }

      .page-hit-2-sexy__image-wrapper {
        flex: 1 1 100%;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-hit-2-sexy__features-grid {
        grid-template-columns: 1fr;
      }

      .page-hit-2-sexy__cta-title {
        font-size: 1.8em;
      }

      .page-hit-2-sexy__cta-description {
        font-size: 1em;
      }

      .page-hit-2-sexy__faq-question h3 {
        font-size: 1em;
      }

      .page-hit-2-sexy__faq-answer {
        padding: 0 15px !important;
      }

      .page-hit-2-sexy__faq-item.active .page-hit-2-sexy__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-hit-2-sexy__hero-title {
        font-size: 2em;
      }

      .page-hit-2-sexy__hero-subtitle {
        font-size: 1em;
      }

      .page-hit-2-sexy__button {
        display: block;
        margin-bottom: 15px;
        width: 100%;
        box-sizing: border-box;
      }

      .page-hit-2-sexy__button--secondary {
        margin-top: 0;
      }

      .page-hit-2-sexy__section {
        padding: 30px 15px;
      }
    }
  