
    /* Hero Section */
    .wp-hero-container {
      max-width: 1100px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(0,150,255,0.08) 0%, rgba(0,198,167,0.08) 100%);
      padding: 5rem 2rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .wp-hero-container::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to right, rgba(0,150,255,0.1), rgba(0,198,167,0.1));
      background-size: cover;
      pointer-events: none;
    }

    .wp-hero-title {
      font-size: 3.2rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0 0 1rem 0;
      position: relative;
      z-index: 1;
    }

    .wp-hero-subtitle {
      font-size: 1.3rem;
      color: #555;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    /* Content Wrapper */
    .wp-content-wrapper {
      max-width: 1100px;
      margin: 0 auto 40px auto;
      background: white;
      border-radius: 0 0 12px 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      overflow: hidden;
    }

    .wp-content-inner {
      padding: 3rem 3.5rem;
    }

    /* Typography */
    .wp-section-title {
      font-size: 1.5rem;
      color: var(--primary);
      margin: 2.5rem 0 1.5rem 0;
      position: relative;
      padding-bottom: 0.8rem;
    }

    .wp-section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary));
      border-radius: 2px;
    }

    .wp-section-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #333333;
      margin-bottom: 1.2rem;
    }

    /* Case Study Cards */
    .wp-case-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.8rem;
      margin: 2rem 0;
    }

    .wp-case-card {
      background: var(--bg-light);
      border-left: 5px solid var(--primary);
      border-radius: 12px;
      padding: 1.8rem;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .wp-case-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,150,255,0.12);
    }

    .wp-case-card h3 {
      color: var(--primary-color);
      margin: 0 0 1rem 0;
      font-size: 1.2rem;
    }

    .wp-case-card p {
      margin: 0;
      font-size: 1rem;
      line-height: 1.7;
      color: #444;
    }

    .wp-metric-highlight {
      display: inline-block;
      background: linear-gradient(130deg, var(--primary), var(--accent));
      color: white;
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
      margin: 0.3rem 0;
    }

    /* Conclusion */
    .wp-conclusion-box {
      background: linear-gradient(135deg, #e6f7ff 0%, #e6fff9 100%);
      border: 1px solid rgba(0,150,255,0.2);
      border-radius: 12px;
      padding: 2rem;
      margin: 2.5rem 0;
      text-align: center;
    }

    .wp-conclusion-box p {
      margin: 0 0 1rem 0;
      font-size: 1.15rem;
    }

    .wp-contact-link {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    .wp-contact-link:hover {
      background: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(0,198,167,0.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .wp-hero-container { padding: 3.5rem 1.5rem 3rem; }
      .wp-hero-title { font-size: 2.5rem; }
      .wp-hero-subtitle { font-size: 1.1rem; }
      .wp-content-inner { padding: 2rem 1.5rem; }
      .wp-section-title { font-size: 1.7rem; }
      .wp-case-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .wp-hero-title { font-size: 2.0rem; }
      .wp-content-inner { padding: 1.5rem 1rem; }
    }