
    :root {
      --page-sunwinweb-primary-color: #f7b32b; /* Gold/Orange */
      --page-sunwinweb-secondary-color: #2c3e50; /* Dark Blue */
      --page-sunwinweb-accent-color: #e74c3c; /* Red for emphasis */
      --page-sunwinweb-text-light: #ecf0f1; /* Light Gray */
      --page-sunwinweb-text-dark: #34495e; /* Dark Gray */
      --page-sunwinweb-background-dark: #1a1a2e; /* Very Dark Blue */
      --page-sunwinweb-background-medium: #22223b; /* Darker Purple */
      --page-sunwinweb-button-bg: #e67e22; /* Orange for buttons */
      --page-sunwinweb-button-hover-bg: #d35400; /* Darker orange */
    }

    .page-sunwinweb {
      font-family: 'Arial', sans-serif;
      color: var(--page-sunwinweb-text-light);
      background-color: var(--page-sunwinweb-background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating button */
    }

    .page-sunwinweb-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-sunwinweb-section.page-sunwinweb-dark-bg {
      background-color: var(--page-sunwinweb-background-medium);
    }

    .page-sunwinweb-banner {
      position: relative;
      width: 100%;
      overflow: hidden;
      background-color: var(--page-sunwinweb-secondary-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 20px; /* Keep banner image at top */
    }

    .page-sunwinweb-banner img {
      width: 100%;
      max-width: 800px; /* Adjust max-width for larger screens */
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-sunwinweb-banner-content {
      padding: 20px;
      text-align: center;
      color: var(--page-sunwinweb-text-light);
      max-width: 90%;
      margin: 0 auto;
    }

    .page-sunwinweb-banner-content h1 {
      font-size: 2.2em;
      color: var(--page-sunwinweb-primary-color);
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-sunwinweb-banner-content p {
      font-size: 1.1em;
      margin-bottom: 25px;
    }

    .page-sunwinweb-button {
      display: inline-block;
      background-color: var(--page-sunwinweb-button-bg);
      color: var(--page-sunwinweb-text-light);
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-sunwinweb-button:hover {
      background-color: var(--page-sunwinweb-button-hover-bg);
      transform: translateY(-2px);
    }

    .page-sunwinweb-floating-button {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--page-sunwinweb-accent-color);
      color: var(--page-sunwinweb-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      animation: page-sunwinweb-pulse 1.5s infinite;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .page-sunwinweb-floating-button:hover {
      background-color: #c0392b; /* Darker red */
      animation: none;
      transform: translateX(-50%) translateY(-2px);
    }

    @keyframes page-sunwinweb-pulse {
      0% { transform: translateX(-50%) scale(1); }
      50% { transform: translateX(-50%) scale(1.05); }
      100% { transform: translateX(-50%) scale(1); }
    }

    .page-sunwinweb-floating-button svg {
      fill: var(--page-sunwinweb-text-light);
      width: 24px;
      height: 24px;
    }

    .page-sunwinweb h2 {
      font-size: 2em;
      color: var(--page-sunwinweb-primary-color);
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-sunwinweb h2::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: var(--page-sunwinweb-primary-color);
    }

    .page-sunwinweb h3 {
      font-size: 1.5em;
      color: var(--page-sunwinweb-primary-color);
      margin-top: 30px;
      margin-bottom: 15px;
    }

    .page-sunwinweb-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-sunwinweb-card {
      background-color: var(--page-sunwinweb-background-medium);
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid rgba(247, 179, 43, 0.3);
    }

    .page-sunwinweb-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .page-sunwinweb-card img {
      max-width: 100%;
      height: 180px; /* Fixed height for product images */
      object-fit: cover; /* Ensure images cover the area without distortion */
      border-radius: 8px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .page-sunwinweb-card h4 {
      font-size: 1.3em;
      color: var(--page-sunwinweb-primary-color);
      margin-bottom: 10px;
    }

    .page-sunwinweb-card p {
      font-size: 0.95em;
      color: var(--page-sunwinweb-text-light);
    }

    .page-sunwinweb-list {
      list-style: none;
      padding: 0;
      text-align: left;
      margin-top: 20px;
    }

    .page-sunwinweb-list li {
      background-color: var(--page-sunwinweb-background-medium);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      color: var(--page-sunwinweb-text-light);
    }

    .page-sunwinweb-list li::before {
      content: '✔';
      color: var(--page-sunwinweb-primary-color);
      font-weight: bold;
      margin-right: 10px;
    }

    .page-sunwinweb-testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-sunwinweb-testimonial-card {
      background-color: var(--page-sunwinweb-background-medium);
      border-radius: 10px;
      padding: 20px;
      text-align: left;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      font-style: italic;
      color: var(--page-sunwinweb-text-light);
    }

    .page-sunwinweb-testimonial-card strong {
      display: block;
      margin-top: 10px;
      font-style: normal;
      color: var(--page-sunwinweb-primary-color);
    }

    .page-sunwinweb-faq-item {
      background-color: var(--page-sunwinweb-background-medium);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
    }

    .page-sunwinweb-faq-question {
      padding: 18px 25px;
      background-color: var(--page-sunwinweb-secondary-color);
      color: var(--page-sunwinweb-primary-color);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-sunwinweb-faq-question:hover {
      background-color: #34495e;
    }

    .page-sunwinweb-faq-question .page-sunwinweb-icon {
      font-size: 1.5em;
      transition: transform 0.3s ease;
    }

    .page-sunwinweb-faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out, padding 0.4s ease-out;
      color: var(--page-sunwinweb-text-light);
    }

    .page-sunwinweb-faq-answer p {
      padding: 15px 0;
      margin: 0;
    }

    .page-sunwinweb-faq-item.active .page-sunwinweb-faq-answer {
      max-height: 200px; /* Adjust as needed */
      padding-bottom: 15px;
    }

    .page-sunwinweb-faq-item.active .page-sunwinweb-faq-question .page-sunwinweb-icon {
      transform: rotate(180deg);
    }

    .page-sunwinweb-cta-section {
      background-image: url('[GALLERY:background:cta_sunwin,background_texture]');
      background-size: cover;
      background-position: center;
      padding: 60px 20px;
      border-radius: 15px;
      margin-top: 40px;
      box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
    }

    .page-sunwinweb-cta-section h2 {
      color: var(--page-sunwinweb-text-light);
      margin-bottom: 25px;
      font-size: 2.5em;
    }

    .page-sunwinweb-cta-section p {
      font-size: 1.2em;
      margin-bottom: 35px;
      color: var(--page-sunwinweb-text-light);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-sunwinweb-banner-content h1 {
        font-size: 1.8em;
      }
      .page-sunwinweb h2 {
        font-size: 1.7em;
      }
      .page-sunwinweb-floating-button {
        width: calc(100% - 40px);
        font-size: 1em;
        padding: 12px 20px;
      }
      .page-sunwinweb-section {
        padding: 30px 15px;
      }
      .page-sunwinweb-card img {
        height: 150px;
      }
    }

    @media (max-width: 480px) {
      .page-sunwinweb-banner-content h1 {
        font-size: 1.5em;
      }
      .page-sunwinweb h2 {
        font-size: 1.5em;
      }
      .page-sunwinweb-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-sunwinweb-floating-button {
        font-size: 0.9em;
        padding: 10px 15px;
      }
      .page-sunwinweb-faq-question {
        font-size: 1em;
        padding: 15px 20px;
      }
    }
  