 <style>
    * {
      font-family: 'Poppins', sans-serif;
    }
    
    body {
      background: #f7fafc;
      color: #14532d;
    }
    
    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, #17633e 0%, #14532d 100%);
      color: white;
      padding: 6rem 2rem 4rem;
      text-align: center;
    }
    
    .page-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    .page-description {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
    }
    
    /* Content Section */
    .content-section {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 2rem;
    }
    
    .section-title {
      font-size: 2.5rem;
      color: #17633e;
      text-align: center;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    
    .section-underline {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #ffd600 60%, #ff5722 100%);
      margin: 0 auto 3rem auto;
      border-radius: 2px;
    }
    
    /* Process Steps */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }
    
    .process-step {
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      text-align: center;
      transition: all 0.3s;
      border: 1px solid #e5e7eb;
      position: relative;
    }
    
    .process-step:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(23,99,62,0.15);
      border-color: #ff5722;
    }
    
    .step-number {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0 auto 1.5rem;
    }
    
    .step-title {
      font-size: 1.3rem;
      color: #17633e;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    
    .step-description {
      color: #4a5568;
      line-height: 1.6;
    }
    
    /* Requirements Section */
    .requirements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }
    
    .requirement-card {
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      border-left: 4px solid #ff5722;
    }
    
    .requirement-card h3 {
      font-size: 1.5rem;
      color: #17633e;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    
    .requirement-card ul {
      list-style: none;
      padding: 0;
    }
    
    .requirement-card li {
      padding: 0.5rem 0;
      color: #4a5568;
      display: flex;
      align-items: flex-start;
    }
    
    .requirement-card li::before {
      content: "✓";
      color: #ff5722;
      font-weight: bold;
      margin-right: 0.75rem;
      font-size: 1.2rem;
    }
    
    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #17633e 0%, #14532d 100%);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
      margin: 4rem 0;
    }
    
    .cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    .cta-description {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }
    
    .cta-btn {
      background: #ff5722;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 0.5rem;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      margin: 0.5rem;
    }
    
    .cta-btn:hover {
      background: #ffd600;
      color: #17633e;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .cta-btn-secondary {
      background: transparent;
      border: 2px solid white;
    }
    
    .cta-btn-secondary:hover {
      background: white;
      color: #17633e;
    }
    
    /* FAQ Section */
    .faq-section {
      max-width: 900px;
      margin: 4rem auto;
      padding: 0 2rem;
    }
    
    .faq-item {
      background: white;
      padding: 1.5rem;
      border-radius: 0.75rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      border: 1px solid #e5e7eb;
      cursor: pointer;
      transition: all 0.3s;
    }
    
    .faq-item:hover {
      border-color: #ff5722;
    }
    
    .faq-question {
      font-size: 1.2rem;
      color: #17633e;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-answer {
      color: #4a5568;
      line-height: 1.6;
      margin-top: 1rem;
      display: none;
    }
    
    .faq-item.active .faq-answer {
      display: block;
    }
    
    .faq-icon {
      transition: transform 0.3s;
    }
    
    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }
    
    @media (max-width: 768px) {
      .page-title {
        font-size: 2rem;
      }
      
      .cta-title {
        font-size: 2rem;
      }
      
      .process-grid,
      .requirements-grid {
        grid-template-columns: 1fr;
      }
    }
    </style>