
    :root {
      --primary-color: #f36828;
      --secondary-color: #25485e;
      --accent-color: #d65e5d;
      --text-color: #374151;
      --background-color: #ffffff;
      --surface-color: #fef7f0;
    }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background: var(--background-color);
    }
    
    /* Navigation */
    .navbar {
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }
    
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .navbar-logo { height: 50px; width: auto; }
    .navbar-title { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); }
    
    .navbar-nav {
      display: flex;
      list-style: none;
      gap: 32px;
    }
    
    .nav-link {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 8px 0;
      transition: color 0.3s ease;
    }
    
    .nav-link:hover, .nav-link.active {
      color: var(--primary-color);
    }
    
    .navbar-phone {
      background: var(--primary-color);
      color: white;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
    }
    
    /* Hero Section */
    .hero-section {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 28px;
      text-align: center;
    }
    
    .hero-title {
      font-size: 3.75rem;
      color: white;
      font-weight: bold;
      line-height: 1.1;
    }
    
    .hero-description {
      font-size: 1.5rem;
      color: white;
      line-height: 1.4;
      opacity: 0.95;
    }
    
    .hero-features {
      display: flex;
      gap: 60px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 2rem 0;
    }
    
    .hero-features-column {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
      min-width: 300px;
      max-width: 400px;
    }
    
    .hero-feature {
      display: flex;
      gap: 12px;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 12px 16px;
      border-radius: 6px;
    }
    
    .hero-feature-icon {
      width: 30px;
      height: 30px;
      background: white;
      color: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }
    
    .hero-feature p {
      color: white;
      margin: 0;
      font-weight: 500;
    }
    
    .hero-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    /* Services Section */
    .services-section {
      padding: 80px 0;
      background: var(--surface-color);
    }
    
    .services-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .services-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .services-subtitle {
      color: var(--primary-color);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .services-heading {
      font-size: 2.5rem;
      margin: 1rem 0;
      color: var(--text-color);
    }
    
    .services-description {
      font-size: 1.125rem;
      color: var(--text-color);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    .service-card {
      background: white;
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
    }
    
    .service-icon img {
      width: 60px;
      height: 60px;
      margin-bottom: 1rem;
    }
    
    .service-title {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--text-color);
    }
    
    .service-description {
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    
    .service-link {
      color: var(--primary-color);
      text-decoration: none;
      font-weight: 600;
    }
    
    .services-cta {
      text-align: center;
      background: var(--primary-color);
      color: white;
      padding: 3rem 2rem;
      border-radius: 8px;
    }
    
    /* Buttons */
    .btn {
      display: inline-block;
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-align: center;
    }
    
    .btn-primary {
      background: var(--accent-color);
      color: white;
    }
    
    .btn-primary:hover {
      background: var(--primary-color);
    }
    
    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }
    
    .btn-secondary:hover {
      background: white;
      color: var(--primary-color);
    }
    
    /* Footer */
    .footer {
      background: var(--secondary-color);
      color: white;
      padding: 60px 0 20px;
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .footer-content {
      margin-bottom: 40px;
    }
    
    .footer-section h4 {
      color: var(--accent-color);
      margin-bottom: 1rem;
    }
    
    .footer-section a {
      color: white;
      text-decoration: none;
    }
    
    .footer-section a:hover {
      color: var(--accent-color);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 20px;
      text-align: center;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-features { flex-direction: column; gap: 1rem; }
      .hero-features-column { min-width: 100%; }
      .navbar-nav { display: none; }
      .services-grid { grid-template-columns: 1fr; }
    }