
    /* Reset và base styles */
    .page-dagathomo {
      font-family: 'Arial', sans-serif;
      color: #f0f0f0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-dagathomo .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px;
    }

    /* Section styling */
    .page-dagathomo section {
      padding: 30px 0;
      text-align: center;
    }

    .page-dagathomo h1,
    .page-dagathomo h2,
    .page-dagathomo h3 {
      color: #e0b000; /* Gold accent for headings */
      margin-bottom: 20px;
      text-transform: uppercase;
    }

    .page-dagathomo h1 {
      font-size: 2.2em;
      font-weight: bold;
    }

    .page-dagathomo h2 {
      font-size: 1.8em;
      margin-top: 30px;
    }

    .page-dagathomo h3 {
      font-size: 1.4em;
      margin-top: 25px;
    }

    .page-dagathomo p {
      margin-bottom: 15px;
    }

    .page-dagathomo a {
      color: #a0d0ff; /* Light blue for links */
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-dagathomo a:hover {
      color: #e0b000;
    }

    /* Banner Section */
    .page-dagathomo .page-banner {
      position: relative;
      width: 100%;
      height: 250px; /* Mobile height */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .page-dagathomo .page-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .page-dagathomo .page-banner-content {
      position: relative;
      z-index: 2;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 15px;
      border-radius: 8px;
      max-width: 90%;
      box-sizing: border-box;
    }

    .page-dagathomo .page-banner-content h1 {
      color: #e0b000;
      font-size: 1.8em;
      margin-bottom: 10px;
    }

    .page-dagathomo .page-banner-content p {
      font-size: 1em;
      color: #f0f0f0;
      margin-bottom: 0;
    }

    /* Floating Buttons */
    .page-dagathomo .floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(26, 26, 26, 0.95);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      z-index: 1000;
      gap: 10px;
    }

    .page-dagathomo .floating-buttons .page-button {
      flex: 1;
      max-width: 48%; /* Adjust for spacing */
      padding: 12px 15px;
      background-color: #e0b000;
      color: #1a1a1a;
      border: none;
      border-radius: 25px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      text-align: center;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }

    .page-dagathomo .floating-buttons .page-button:hover {
      background-color: #ffc800;
      transform: translateY(-2px);
    }

    /* Product Display Grid */
    .page-dagathomo .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 20px 0;
    }

    .page-dagathomo .product-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

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

    .page-dagathomo .product-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .page-dagathomo .product-card-content {
      padding: 15px;
    }

    .page-dagathomo .product-card-content h3 {
      font-size: 1.2em;
      margin-top: 0;
      margin-bottom: 10px;
      color: #e0b000;
      text-transform: none;
    }

    .page-dagathomo .product-card-content p {
      font-size: 0.9em;
      color: #cccccc;
      margin-bottom: 10px;
    }

    .page-dagathomo .product-card-content .page-button-small {
      display: inline-block;
      padding: 8px 15px;
      background-color: #e0b000;
      color: #1a1a1a;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-dagathomo .product-card-content .page-button-small:hover {
      background-color: #ffc800;
    }

    /* List styling */
    .page-dagathomo ul {
      list-style: none;
      padding: 0;
      margin: 20px auto;
      max-width: 800px;
      text-align: left;
    }

    .page-dagathomo ul li {
      background-color: #2a2a2a;
      margin-bottom: 10px;
      padding: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-dagathomo ul li::before {
      content: '⚡'; /* Unicode lightning bolt */
      margin-right: 10px;
      color: #e0b000;
      font-size: 1.2em;
    }

    /* Call to action section */
    .page-dagathomo .cta-section {
      background-color: #2a2a2a;
      padding: 40px 20px;
      margin-top: 40px;
      border-radius: 10px;
    }

    .page-dagathomo .cta-section h2 {
      color: #e0b000;
    }

    .page-dagathomo .cta-section p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-dagathomo .cta-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #e0b000;
      color: #1a1a1a;
      border-radius: 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-transform: uppercase;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    }

    .page-dagathomo .cta-button:hover {
      background-color: #ffc800;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
      .page-dagathomo .page-banner {
        height: 350px; /* Desktop height */
      }

      .page-dagathomo .page-banner-content h1 {
        font-size: 2.8em;
      }

      .page-dagathomo .page-banner-content p {
        font-size: 1.2em;
      }

      .page-dagathomo h1 {
        font-size: 3em;
      }

      .page-dagathomo h2 {
        font-size: 2.2em;
      }

      .page-dagathomo .floating-buttons {
        justify-content: center;
        gap: 20px;
      }

      .page-dagathomo .floating-buttons .page-button {
        max-width: 200px; /* Wider buttons on desktop */
      }

      .page-dagathomo .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
      }
    }
  