
    :root {
      --win365-primary-color: #0a4f8f; /* Deep blue, adjusted for contrast */
      --win365-secondary-color: #f1c40f; /* Yellow/Gold */
      --win365-accent-color: #e74c3c; /* Red */
      --win365-text-light: #ecf0f1; /* Light gray */
      --win365-text-dark: #2c3e50; /* Dark blue-gray */
      --win365-bg-dark: #1a2a3a; /* Very dark blue */
      --win365-bg-light: #f8f9fa; /* Off-white */
      --win365-border-color: #34495e; /* Grayish blue */
      --win365-shadow: rgba(0, 0, 0, 0.2);
    }

    /* Base styles for the page container */
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--win365-text-dark);
      background-color: var(--win365-bg-light);
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Fixed header padding */
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-section {
      padding-top: 10px; /* For desktop */
      background-color: var(--win365-primary-color);
      color: var(--win365-text-light);
      text-align: center;
      padding-bottom: 40px;
      border-radius: 8px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10, 79, 143, 0.8), rgba(26, 42, 58, 0.8));
      z-index: 1;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--win365-secondary-color);
      text-shadow: 2px 2px 4px var(--win365-shadow);
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--win365-text-light);
      opacity: 0.9;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__cta-button {
      display: inline-block;
      background-color: var(--win365-accent-color);
      color: var(--win365-text-light);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px var(--win365-shadow);
      margin-top: 20px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__cta-button:hover {
      background-color: #c0392b; /* Darker red */
      transform: translateY(-2px);
    }

    /* General section styling */
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__section {
      background-color: #ffffff;
      padding: 30px;
      margin-bottom: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__section-title {
      color: var(--win365-primary-color);
      font-size: 2em;
      margin-bottom: 20px;
      border-bottom: 3px solid var(--win365-secondary-color);
      padding-bottom: 10px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__subsection-title {
      color: var(--win365-primary-color);
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__paragraph {
      margin-bottom: 15px;
      color: var(--win365-text-dark);
    }
    
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__inline-link {
        color: var(--win365-primary-color);
        text-decoration: underline;
        font-weight: bold;
    }
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__inline-link:hover {
        color: var(--win365-accent-color);
        text-decoration: none;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__list {
      list-style: disc inside;
      margin-bottom: 15px;
      padding-left: 20px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__list-item {
      margin-bottom: 8px;
      color: var(--win365-text-dark);
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__image-wrapper {
      text-align: center;
      margin: 30px 0;
      background-color: var(--win365-bg-dark);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px var(--win365-shadow);
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__image:hover {
      transform: scale(1.02);
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__image-caption {
      margin-top: 15px;
      font-style: italic;
      color: var(--win365-text-light);
      font-size: 0.95em;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 20px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-card {
      background-color: var(--win365-bg-light);
      border: 1px solid var(--win365-border-color);
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-icon {
      width: 250px; /* Minimum size */
      height: 180px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 4px;
      max-width: 100%;
      height: auto;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-title {
      font-size: 1.25em;
      color: var(--win365-primary-color);
      margin-bottom: 10px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-description {
      font-size: 0.95em;
      color: var(--win365-text-dark);
    }

    /* FAQ Section */
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-section {
      background-color: var(--win365-bg-dark);
      color: var(--win365-text-light);
      padding: 40px;
      margin-bottom: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-title {
      color: var(--win365-secondary-color);
      font-size: 2.2em;
      margin-bottom: 30px;
      text-align: center;
      border-bottom: 3px solid var(--win365-accent-color);
      padding-bottom: 15px;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-item {
      background-color: var(--win365-primary-color);
      border: 1px solid var(--win365-border-color);
      border-radius: 5px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--win365-primary-color);
      color: var(--win365-text-light);
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-question:hover {
      background-color: #0d6efd; /* Slightly lighter blue */
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-item.active .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
      /* content: '−'; this is handled by JS */
    }
    
    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #1a2a3a; /* Dark background for answer */
      color: var(--win365-text-light);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-item.active .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them {
        padding: 15px;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-section {
        padding-top: 10px; /* For mobile */
        padding-bottom: 30px;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-title {
        font-size: 2em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-subtitle {
        font-size: 1.1em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__section {
        padding: 20px;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__section-title {
        font-size: 1.8em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__subsection-title {
        font-size: 1.3em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-grid {
        grid-template-columns: 1fr;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-section {
        padding: 30px 20px;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-title {
        font-size: 1.8em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-question h3 {
        font-size: 1em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-answer {
        padding: 15px 15px !important;
      }

      /* Image responsive optimization */
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__advantage-icon {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-title {
        font-size: 1.8em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__hero-subtitle {
        font-size: 0.95em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__section-title {
        font-size: 1.6em;
      }
      .page-resourcse-win365-why-more-and-more-users-are-choosing-them__faq-title {
        font-size: 1.6em;
      }
    }
  