#custom-container-fasterhq {
      --faster-teal: #14B8A6;
      --faster-green: #10B981;
      --sails-navy: #2A3A5A;
      --sails-blue: #465E91;
      --sails-light: #F5F7FB;
      --text-dark: #1F2937;
      --text-light: #6B7280;
    }

    #custom-container-fasterhq * {
      box-sizing: border-box;
    }

    /* Hero Section */
    #custom-container-fasterhq .hero-section {
      background: linear-gradient(135deg, var(--sails-navy) 0%, var(--sails-blue) 100%);
      color: white;
      padding: 6rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #custom-container-fasterhq .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, var(--faster-teal) 0%, transparent 50%);
      opacity: 0.1;
      pointer-events: none;
    }

    #custom-container-fasterhq .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
    }

    #custom-container-fasterhq .hero-title {
      font-size: 3.5rem;
      font-weight: var(--font-weight-bold);
      margin-bottom: 1.5rem;
      line-height: 1.1;
    }

    #custom-container-fasterhq .hero-subtitle {
      font-size: 1.25rem;
      font-weight: 300;
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    #custom-container-fasterhq .partnership-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 2rem;
    }

    #custom-container-fasterhq .partnership-badge .icon {
      width: 24px;
      height: 24px;
      background: var(--faster-teal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
    }

    /* Partnership Overview */
    #custom-container-fasterhq .partnership-overview {
      padding: 5rem 2rem;
      background: var(--sails-light);
    }

    #custom-container-fasterhq .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    #custom-container-fasterhq .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    #custom-container-fasterhq .section-title {
      font-size: 2.5rem;
      color: var(--sails-navy);
      margin-bottom: 1rem;
    }

    #custom-container-fasterhq .section-subtitle {
      font-size: 1.125rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
    }

    #custom-container-fasterhq .partnership-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    #custom-container-fasterhq .partner-card {
      background: white;
      padding: 3rem;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #custom-container-fasterhq .partner-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    #custom-container-fasterhq .partner-logo {
      width: 120px;
      height: 60px;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: var(--font-weight-bold);
      font-size: 1.5rem;
      border-radius: 8px;
    }

    #custom-container-fasterhq .partner-logo-img {
      width: 120px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 1.5rem;
      border-radius: 8px;
    }

    #custom-container-fasterhq .faster-logo {
      background: linear-gradient(135deg, var(--faster-teal), var(--faster-green));
      color: white;
    }

    #custom-container-fasterhq .sails-logo {
      background: var(--sails-navy);
      color: white;
    }

    #custom-container-fasterhq .partner-title {
      font-size: 1.5rem;
      color: var(--sails-navy);
      margin-bottom: 1rem;
    }

    #custom-container-fasterhq .partner-description {
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    #custom-container-fasterhq .partner-capabilities {
      list-style: none;
      padding: 0;
    }

    #custom-container-fasterhq .partner-capabilities li {
      padding: 0.5rem 0;
      color: var(--text-dark);
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    #custom-container-fasterhq .partner-capabilities li::before {
      content: '✓';
      color: var(--faster-teal);
      font-weight: var(--font-weight-bold);
      flex-shrink: 0;
    }

    /* Services Section */
    #custom-container-fasterhq .services-section {
      padding: 5rem 2rem;
      background: white;
    }

    #custom-container-fasterhq .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    #custom-container-fasterhq .service-card {
      padding: 2rem;
      border: 1px solid #E5E7EB;
      border-radius: 12px;
      transition: all 0.3s ease;
      background: white;
    }

    #custom-container-fasterhq .service-card:hover {
      border-color: var(--faster-teal);
      box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
    }

    #custom-container-fasterhq .service-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--faster-teal), var(--faster-green));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }

    #custom-container-fasterhq .service-title {
      font-size: 1.25rem;
      color: var(--sails-navy);
      margin-bottom: 0.5rem;
    }

    #custom-container-fasterhq .service-description {
      color: var(--text-light);
      line-height: 1.5;
    }

    /* CTA Section */
    #custom-container-fasterhq .cta-section {
      padding: 5rem 2rem;
      background: linear-gradient(135deg, var(--sails-navy) 0%, var(--sails-blue) 100%);
      color: white;
      text-align: center;
    }

    #custom-container-fasterhq .cta-content {
      max-width: 800px;
      margin: 0 auto;
    }

    #custom-container-fasterhq .cta-title {
      font-size: 2.25rem;
      margin-bottom: 1rem;
    }

    #custom-container-fasterhq .cta-description {
      font-size: 1.125rem;
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    #custom-container-fasterhq .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    #custom-container-fasterhq .btn {
      padding: 0.75rem 2rem;
      border-radius: 8px;
      font-weight: var(--font-weight-semibold);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
    }

    #custom-container-fasterhq .btn-primary {
      background: var(--faster-teal);
      color: white;
    }

    #custom-container-fasterhq .btn-primary:hover {
      background: #0D9488;
      transform: translateY(-2px);
    }

    #custom-container-fasterhq .btn-secondary {
      background: white;
      color: var(--sails-navy);
    }

    #custom-container-fasterhq .btn-secondary:hover {
      background: #F3F4F6;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      #custom-container-fasterhq .hero-title {
        font-size: 2.5rem;
      }

      #custom-container-fasterhq .partnership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      #custom-container-fasterhq .partner-card {
        padding: 2rem;
      }

      #custom-container-fasterhq .services-grid {
        grid-template-columns: 1fr;
      }

      #custom-container-fasterhq .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      #custom-container-fasterhq .btn {
        width: 100%;
        max-width: 300px;
      }
    }

    @media (max-width: 480px) {
      #custom-container-fasterhq .hero-section {
        padding: 4rem 1rem;
      }

      #custom-container-fasterhq .section-title {
        font-size: 2rem;
      }

      #custom-container-fasterhq .partner-card {
        padding: 1.5rem;
      }
    }
