
  :root {
    --primary-color: #022b41;
    --secondary-color: #3A7BD5;
    --accent-color: #f0b708;
    --light-bg: #f8fafc;
    --text-dark: #333;
    --text-light: #5a6d8a;
  }
  
  .hero-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #014a6a 100%);
  }
  
  .partner-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    height: 100%;
  }
  
  .partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left-color: var(--accent-color);
  }
  
  .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(2, 43, 65, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }
  
  .partner-card:hover .icon-box {
    background: var(--primary-color);
    transform: rotate(5deg) scale(1.1);
  }
  
  .partner-card:hover .icon-box i {
    color: white;
  }
  
  .process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
  }
  
  .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
  }
  
  .benefit-highlight {
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    transition: all 0.3s ease;
  }
  
  .benefit-highlight:hover {
    background: rgba(240, 183, 8, 0.05);
    transform: translateX(5px);
  }
  
  .cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover {
    background: #014a6a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.2);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
  }
  
  .cta-button:hover::after {
    animation: shine 1.5s infinite;
    opacity: 1;
  }
  
  @keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
  }
  
  .partner-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--accent-color);
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(2, 43, 65, 0.25);
  }
  
  @media (max-width: 768px) {
    .process-step {
      padding-left: 60px;
    }
    
    .step-number {
      width: 50px;
      height: 50px;
      font-size: 20px;
    }
  }
  
  .container {
    max-width: 1200px;
  }
  
  .icon-box i {
    transition: all 0.3s ease;
  }
  
  .icon-box i:hover {
    animation: shineIcon 1s infinite;
  }
  
  @keyframes shineIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

  /* Benefit Card Styling */
  .benefit-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(2, 43, 65, 0.1);
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(2, 43, 65, 0.1);
    border-color: rgba(2, 43, 65, 0.2);
  }
  
  .card-header {
    background: linear-gradient(135deg, #022b41 0%, #014a6a 100%);
    color: white;
    padding: 2rem;
    position: relative;
  }
  
  .card-header h3 {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 28px;
  }
  
  .card-body {
    padding: 2rem;
  }
  
  .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
  }
  
  .benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-list i {
    color: #3A7BD5;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
  }
  
  .benefit-list strong {
    color: #022b41;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .benefit-list p {
    color: #5a6d8a;
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  .highlight-stat {
    background: rgba(58, 123, 213, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
  }
  
  .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #022b41;
    line-height: 1;
  }
  
  .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #5a6d8a;
  }
  
  .btn-primary {
    background-color: #022b41;
    border-color: #022b41;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #014a6a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(2, 43, 65, 0.2);
  }
  
  @media (max-width: 768px) {
    .card-header {
      padding: 1.5rem;
    }
    
    .icon-wrapper {
      width: 60px;
      height: 60px;
      font-size: 24px;
    }
    
    .card-body {
      padding: 1.5rem;
    }
  }

  #partner-form {
    background-color: #f8f9fa;
  }
  .text-primary {
    color: #022b41 !important;
  }
  .btn-primary {
    background-color: #022b41;
    border-color: #022b41;
  }
  .form-floating label {
    color: #6c757d;
  }
  .form-control:focus, .form-select:focus {
    border-color: #022b41;
    box-shadow: 0 0 0 0.25rem rgba(2, 43, 65, 0.25);
  }

