
    /* Modern About Section Styles */
    #about {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    #about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff9500" fill-opacity="0.03" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
      background-size: cover;
      background-position: center;
      opacity: 0.7;
    }
    
    .about-container {
      position: relative;
      z-index: 1;
    }
    
    .about-header {
      text-align: center;
      margin-bottom: 80px;
    }
    
    .about-header h2 {
      font-weight: 700;
      color: #333;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
      font-size: 2.5rem;
    }
    
    .about-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #644b09, #d9a313);
      border-radius: 2px;
    }
    
    .about-header p {
      color: #644b09;
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.2rem;
      line-height: 1.6;
    }
    
    /* Business Workflow Animation */
    .business-workflow {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 80px;
      position: relative;
    }
    
    .workflow-step {
      text-align: center;
      flex: 1;
      position: relative;
      z-index: 2;
    }
    
    .step-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      position: relative;
      transition: all 0.5s ease;
      border: 3px solid transparent;
      background-clip: padding-box;
    }
    
    .step-icon::before {
      content: '';
      position: absolute;
      top: -3px;
      left: -3px;
      right: -3px;
      bottom: -3px;
      background: linear-gradient(135deg, #644b09, #d9a313);
      border-radius: 50%;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .workflow-step.active .step-icon::before {
      opacity: 1;
    }
    
    .workflow-step.active .step-icon {
      transform: scale(1.1);
      box-shadow: 0 15px 40px rgba(255, 149, 0, 0.25);
    }
    
    .step-icon i {
      font-size: 2.5rem;
      background: linear-gradient(135deg, #644b09, #d9a313);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      transition: all 0.5s ease;
    }
    
    .workflow-step.active .step-icon i {
      color: white;
      -webkit-background-clip: unset;
      background-clip: unset;
    }
    
    .step-content h3 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
      font-size: 1.3rem;
    }
    
    .step-content p {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.5;
      max-width: 200px;
      margin: 0 auto;
    }
    
    .workflow-connector {
      position: absolute;
      top: 50px;
      left: 0;
      right: 0;
      height: 3px;
      background: #e0e0e0;
      z-index: 1;
    }
    
    .workflow-progress {
      position: absolute;
      top: 50px;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, #ff9500, #ffcc00);
      width: 0%;
      transition: width 1.5s ease;
      z-index: 1;
    }
    
    /* Stats Section */
    .about-stats {
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
      padding: 50px 30px;
      margin-bottom: 80px;
      position: relative;
      overflow: hidden;
    }
    
    .about-stats::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 149, 0, 0.03) 0%, rgba(255, 204, 0, 0.03) 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    .about-stats:hover::before {
      opacity: 1;
    }
    
    .stat-item {
      text-align: center;
      padding: 20px;
    }
    
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      background: linear-gradient(135deg, #ff9500, #ffcc00);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 10px;
      line-height: 1;
    }
    
    .stat-label {
      color: #666;
      font-size: 1rem;
      font-weight: 500;
    }
    
    /* Values Section */
    .about-values {
      margin-bottom: 80px;
    }
    
    .values-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .values-header h3 {
      font-weight: 700;
      color: #333;
      margin-bottom: 15px;
      font-size: 2rem;
    }
    
    .values-header p {
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.6;
    }
    
    .value-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      padding: 30px;
      height: 100%;
      transition: all 0.5s ease;
      border: 1px solid rgba(255, 149, 0, 0.1);
      position: relative;
      overflow: hidden;
    }
    
    .value-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, #ff9500, #ffcc00);
      transform: scaleY(0);
      transition: transform 0.5s ease;
    }
    
    .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .value-card:hover::before {
      transform: scaleY(1);
    }
    
    .value-icon {
      width: 70px;
      height: 70px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 204, 0, 0.1));
      color: #ff9500;
      font-size: 1.8rem;
      transition: all 0.5s ease;
    }
    
    .value-card:hover .value-icon {
      background: linear-gradient(135deg, #ff9500, #ffcc00);
      color: white;
      transform: rotate(5deg) scale(1.1);
    }
    
    .value-content h4 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
      font-size: 1.3rem;
    }
    
    .value-content p {
      color: #666;
      line-height: 1.6;
    }
    
    /* CTA Section */
    .about-cta {
      background: linear-gradient(135deg, #ff9500, #ffcc00);
      border-radius: 20px;
      padding: 60px 40px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .about-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
      background-size: cover;
      background-position: center;
    }
    
    .cta-content {
      position: relative;
      z-index: 2;
    }
    
    .cta-content h3 {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 2.2rem;
    }
    
    .cta-content p {
      margin-bottom: 30px;
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    
    .btn-cta {
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .btn-cta-primary {
      background: white;
      color: #ff9500;
    }
    
    .btn-cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    }
    
    .btn-cta-secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .btn-cta-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
    }
    
    /* Animation Classes */
    .fade-in-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .fade-in-up.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    .delay-1 {
      transition-delay: 0.1s;
    }
    
    .delay-2 {
      transition-delay: 0.2s;
    }
    
    .delay-3 {
      transition-delay: 0.3s;
    }
    
    .delay-4 {
      transition-delay: 0.4s;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .business-workflow {
        flex-direction: column;
        gap: 50px;
      }
      
      .workflow-connector, .workflow-progress {
        display: none;
      }
      
      .workflow-step {
        flex: unset;
        width: 100%;
      }
      
      .step-content p {
        max-width: 100%;
      }
    }
    
    @media (max-width: 768px) {
      .about-header h2 {
        font-size: 2rem;
      }
      
      .about-header p {
        font-size: 1.1rem;
        padding: 0 15px;
      }
      
      .about-cta {
        padding: 40px 20px;
      }
      
      .cta-content h3 {
        font-size: 1.8rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn-cta {
        width: 200px;
        justify-content: center;
      }
    }
