 .services-hero {
      background: #f7f7f7;
        border-bottom: 1px solid #e4e5e7;
     padding: 80px 20px;
     text-align: center;
     color: white;
     margin-bottom: 60px;
     position: relative;
     overflow: hidden;
 }

 .services-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
     opacity: 0.3;
 }

 .services-hero-content {
     position: relative;
     z-index: 1;
 }

 .services-hero h1 {
     font-size: 48px;
     font-weight: 800;
     margin-bottom: 20px;
     letter-spacing: -0.5px;
     color: #404145;
 }

 .services-hero p {
     font-size: 22px;
     opacity: 0.95;
     max-width: 700px;
     margin: 0 auto;
     font-weight: 300;
     color: #62646a;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .section-header {
     margin-bottom: 40px;
 }

 .section-header h2 {
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 10px;
     color: #1e293b;
     letter-spacing: -0.5px;
 }

 .section-header p {
     font-size: 18px;
     color: #64748b;
 }

 .services-grid {
     display: grid;
     gap: 28px;
     grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     margin-bottom: 80px;
 }

 .service-card {
     position: relative;
     background: #fff;
     border-radius: 16px;
     overflow: hidden;
     border: 1px solid #e2e8f0;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     text-decoration: none;
     color: inherit;
     display: flex;
     flex-direction: column;
 }

 .service-card:hover {
     box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
 }

 .service-card-image {
     position: relative;
     height: 200px;
     background: linear-gradient(135deg, #1e3a8a, #3b82f6);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .service-card-image::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
     animation: pulse 8s ease-in-out infinite;
 }


 .service-card-image i {
     font-size: 72px;
     color: white;
     z-index: 1;
     transition: transform 0.3s ease;
 }

 .service-card:hover .service-card-image i {
     transform: scale(1.1);
 }

 .service-card-content {
     padding: 24px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .service-card-content h3 {
     font-size: 22px;
     font-weight: 700;
     margin-bottom: 12px;
     color: #1e293b;
     letter-spacing: -0.3px;
 }

 .service-card-content p {
     font-size: 15px;
     color: #64748b;
     line-height: 1.7;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
     text-overflow: ellipsis;
     height: 76px;
     flex: 1;
 }

 .service-card-footer {
     padding: 18px 24px;
     border-top: 1px solid #f1f5f9;
     display: flex;
     align-items: center;
     justify-content: space-between;
     font-size: 14px;
     color: #64748b;
     background: #f8fafc;
 }

 .service-count {
     display: flex;
     align-items: center;
     gap: 6px;
     font-weight: 500;
 }

 .service-count i {
     font-size: 18px;
     color: #3b82f6;
 }

 .explore-link {
     color: #3b82f6;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 4px;
     transition: gap 0.3s ease;
 }

 .service-card:hover .explore-link {
     gap: 8px;
     color: #1e3a8a;
 }

 /* Popular Badge */
 .popular-badge {
     position: absolute;
     top: 16px;
     right: 16px;
     background: #22c55e;
     color: white;
     padding: 6px 14px;
     border-radius: 24px;
     font-size: 12px;
     font-weight: 700;
     z-index: 2;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
 }

 /* How It Works Section */
 .how-it-works {
     background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
     padding: 90px 20px;
     margin-top: 80px;
 }

 .how-it-works h2 {
     text-align: center;
     font-size: 42px;
     font-weight: 800;
     margin-bottom: 20px;
     color: #1e293b;
     letter-spacing: -0.5px;
 }

 .steps-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto 60px;
 }

 .step-card {
     text-align: center;
     padding: 40px 28px;
     background: white;
     border-radius: 16px;
     transition: all 0.3s ease;
     border: 2px solid #e2e8f0;
 }

 .step-card:hover {
     box-shadow: 0 16px 32px rgba(30, 58, 138, 0.12);
 }

 .step-number {
     width: 70px;
     height: 70px;
     border-radius: 50%;
     background: linear-gradient(135deg, #1e3a8a, #3b82f6);
     color: white;
     font-size: 28px;
     font-weight: 800;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 24px;
     box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
 }

 .step-card h3 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 14px;
     color: #1e293b;
     letter-spacing: -0.3px;
 }

 .step-card p {
     font-size: 16px;
     color: #64748b;
     line-height: 1.7;
 }

 .cta-section {
     text-align: center;
     padding: 60px 32px;
     background: linear-gradient(135deg, #1e3a8a, #3b82f6);
     border-radius: 20px;
     max-width: 900px;
     margin: 0 auto;
     color: white;
     box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
 }

 .cta-section h3 {
     font-size: 32px;
     font-weight: 800;
     margin-bottom: 16px;
     letter-spacing: -0.5px;
 }

 .cta-section p {
     font-size: 18px;
     margin-bottom: 36px;
     opacity: 0.95;
 }

 .cta-buttons {
     display: flex;
     gap: 16px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn {
     padding: 16px 40px;
     border-radius: 12px;
     font-size: 17px;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.3s ease;
     display: inline-block;
     letter-spacing: 0.3px;
 }

 .btn-primary {
     background: #fbbf24;
     color: #1e293b;
     border: none;
 }

 .btn-primary:hover {
     background: #f59e0b;
     box-shadow: 0 12px 24px rgba(251, 191, 36, 0.4);
 }

 .btn-secondary {
     background: white;
     color: #3b82f6;
     border: 2px solid white;
 }

 .btn-secondary:hover {
     background: transparent;
     color: white;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .container {
         padding: 0 10px;
     }

     .services-hero {
         padding: 60px 10px;
         margin-bottom: 40px;
     }

     .services-hero h1 {
         font-size: 36px;
     }

     .services-hero p {
         font-size: 18px;
     }

     .section-header h2 {
         font-size: 28px;
     }

     .section-header p {
         font-size: 16px;
     }

     .services-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-bottom: 60px;
     }

     .how-it-works {
         padding: 60px 10px 15px 0;
     }

     .how-it-works h2 {
         font-size: 32px;
         margin-bottom: 40px;
     }

     .steps-container {
         grid-template-columns: 1fr;
         gap: 24px;
         margin-bottom: 40px;
     }

     .step-card {
         padding: 32px 20px;
     }

     .cta-section {
         padding: 40px 20px;
         border-radius: 16px;
     }

     .cta-section h3 {
         font-size: 26px;
     }

     .cta-section p {
         font-size: 16px;
     }

     .cta-buttons {
         flex-direction: column;
     }

     .btn {
         width: 100%;
     }
 }