  :root {
      --primary: #0d6efd;
      --secondary: #6c757d;
      --dark: #212529;
      --light: #f8f9fa;
      --accent: #ff6b35;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    
    .navbar {
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 10px 0;
    }
    
    .navbar-brand {
      font-size: 1.5rem;
    }
    
    .navbar-brand img {
      border-radius: 5px;
    }
    
    .nav-link {
      font-weight: 500;
      margin: 0 5px;
      transition: color 0.3s;
    }
    
    .nav-link:hover {
      color: var(--accent) !important;
    }
    
    header {
      background: linear-gradient(135deg, var(--primary) 0%, #0a58ca 100%);
      color: white;
      padding: 100px 0 80px !important;
      margin-top: 76px !important;
    }
    
    .service-section {
      padding: 80px 0;
      position: relative;
    }
    
    .service-section:nth-child(even) {
      background-color: var(--light);
    }
    
    .service-text {
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .service-section img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.5s;
    }
    
    .service-section:hover img {
      transform: scale(1.02);
    }
    
    .service-section h3 {
      color: var(--primary);
      margin-bottom: 20px;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
    }
    
    .service-section h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: var(--accent);
    }
    
    .service-features {
      margin-top: 25px;
    }
    
    .service-features li {
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
    }
    
    .service-features i {
      color: var(--accent);
      margin-right: 10px;
      margin-top: 5px;
    }
    
    .process-section {
      background-color: var(--dark);
      color: white;
      padding: 80px 0;
    }
    
    .process-step {
      text-align: center;
      padding: 20px;
    }
    
    .process-icon {
      width: 80px;
      height: 80px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 30px;
    }
    
    .testimonials {
      padding: 80px 0;
      background-color: #f0f8ff;
    }
    
    .testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin: 15px;
      height: 100%;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
    }
    
    .client-info {
      display: flex;
      align-items: center;
    }
    
    .client-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
    }
    
    .client-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .cta-section {
      background: linear-gradient(135deg, var(--primary) 0%, #0a58ca 100%);
      color: white;
      padding: 80px 0;
      text-align: center;
    }
    
    .btn-custom {
      background-color: var(--accent);
      border-color: var(--accent);
      color: white;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s;
    }
    
    .btn-custom:hover {
      background-color: #e55a2b;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    footer {
      background-color: var(--dark);
      color: white;
      text-align: center;
      padding: 30px 0;
    }
    
    .footer-links {
      margin-bottom: 20px;
    }
    
    .footer-links a {
      color: #adb5bd;
      margin: 0 15px;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: white;
    }
    
    .social-icons {
      margin-bottom: 20px;
    }
    
    .social-icons a {
      color: white;
      background: rgba(255,255,255,0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 5px;
      transition: all 0.3s;
    }
    
    .social-icons a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    @media (max-width: 768px) {
      .service-section img {
        height: 300px;
        margin-top: 30px;
      }
      
      header {
        padding: 60px 0 40px !important;
      }
    }
  