:root {
      --primary: hsl(210, 65%, 28%);
      --primary-dark: hsl(210, 70%, 20%);
      --primary-foreground: hsl(0, 0%, 100%);
      --accent: hsl(355, 65%, 48%);
      --accent-light: hsl(355, 60%, 58%);
      --background: hsl(220, 15%, 95%);
      --background-alt: hsl(220, 12%, 92%);
      --foreground: hsl(220, 30%, 15%);
      --muted: hsl(220, 15%, 88%);
      --muted-foreground: hsl(220, 15%, 45%);
      --card: hsl(0, 0%, 100%);
      --border: hsl(220, 15%, 85%);
      --gradient-hero: linear-gradient(135deg, hsl(210, 65%, 25%) 0%, hsl(210, 55%, 35%) 50%, hsl(220, 45%, 30%) 100%);
      --gradient-accent: linear-gradient(135deg, hsl(355, 65%, 48%) 0%, hsl(355, 70%, 55%) 100%);
      --shadow-soft: 0 4px 20px -4px rgba(0, 40, 80, 0.1);
      --shadow-medium: 0 8px 30px -8px rgba(0, 40, 80, 0.15);
      --shadow-strong: 0 20px 50px -15px rgba(0, 40, 80, 0.2);
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
    }
    
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .section-padding {
      padding: 5rem 0;
    }
    
    .text-accent {
      color: var(--accent);
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: 0.5rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      border: none;
    }
    
    .btn-default {
      background: var(--primary);
      color: var(--primary-foreground);
    }
    
    .btn-default:hover {
      background: var(--primary-dark);
    }
    
    .btn-accent {
      background: var(--gradient-accent);
      color: var(--primary-foreground);
    }
    
    .btn-accent:hover {
      transform: scale(1.02);
    }

    /* Page Header */
    .page-header {
      background: var(--gradient-hero);
      padding: 6rem 0 4rem;
      text-align: center;
    }
    
    .page-header h1 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: var(--primary-foreground);
      margin-bottom: 1rem;
    }
    
    .page-header p {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.9);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .page-header .breadcrumb {
      margin-top: 1.5rem;
      color: rgba(255,255,255,0.7);
    }
    
    .page-header .breadcrumb a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
    }
    
    .page-header .breadcrumb a:hover {
      color: var(--primary-foreground);
    }

    /* Section Header */
    .section-header {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 4rem;
    }
    
    .section-label {
      display: inline-block;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }
    
    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 1rem;
    }
    
    .section-header p {
      font-size: 1.125rem;
      color: var(--muted-foreground);
    }

    /* Services Section */
    .services-section {
      background: var(--background);
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .service-card {
      background: var(--card);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.5s ease;
      display: flex;
      flex-direction: column;
    }
    
    .service-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-strong);
    }
    
    .service-image {
      height: 14rem;
      position: relative;
      overflow: hidden;
    }
    
    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .service-card:hover .service-image img {
      transform: scale(1.1);
    }
    
    .service-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 50, 80, 0.8), transparent);
    }
    
    .service-category {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      z-index: 1;
      padding: 0.25rem 0.75rem;
      background: var(--gradient-accent);
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--primary-foreground);
    }
    
    .service-content {
      padding: 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    
    .service-content h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .service-content > p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.7;
      flex: 1;
    }
    
    .service-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .service-feature {
      padding: 0.25rem 0.75rem;
      background: hsla(210, 65%, 28%, 0.1);
      border-radius: 0.5rem;
      font-size: 0.875rem;
      color: var(--primary);
    }
    
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary);
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .service-link:hover {
      color: var(--accent);
    }
    
    .service-link svg {
      width: 1rem;
      height: 1rem;
      transition: transform 0.3s;
    }
    
    .service-link:hover svg {
      transform: translateX(0.25rem);
    }

    /* Products Section */
    .products-section {
      background: var(--background-alt);
    }
    
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    @media (max-width: 1024px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 640px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .product-card {
      background: var(--card);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.5s ease;
    }
    
    .product-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-strong);
    }
    
    .product-image {
      height: 18rem;
      position: relative;
      overflow: hidden;
    }
    
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image img {
      transform: scale(1.1);
    }
    
    .product-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.25rem 0.75rem;
      background: var(--primary);
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--primary-foreground);
    }
    
    .product-content {
      padding: 1.5rem;
    }
    
    .product-content h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
    
    .product-content p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
    
    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .product-tag {
      padding: 0.25rem 0.5rem;
      background: var(--muted);
      border-radius: 0.25rem;
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    /* Divisions Section */
    .divisions-section {
      background: var(--gradient-hero);
    }
    
    .divisions-section .section-label {
      color: var(--accent-light);
    }
    
    .divisions-section .section-header h2 {
      color: var(--primary-foreground);
    }
    
    .divisions-section .section-header p {
      color: rgba(255,255,255,0.8);
    }
    
    .divisions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    
    @media (max-width: 1024px) {
      .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 640px) {
      .divisions-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .division-card {
      background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s;
    }
    
    .division-card:hover {
      transform: translateY(-0.5rem);
    }
    
    .division-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    
    .division-card h3 {
      font-size: 1.125rem;
      margin-bottom: 0.5rem;
    }
    
    .division-card p {
      color: var(--muted-foreground);
      font-size: 0.875rem;
    }

    /* CTA Section */
    .cta-section {
      background: var(--background);
      text-align: center;
    }
    
    .cta-content {
      max-width: 600px;
      margin: 0 auto;
    }
    
    .cta-content h2 {
      font-size: clamp(2rem, 4vw, 2.5rem);
      margin-bottom: 1rem;
    }
    
    .cta-content p {
      color: var(--muted-foreground);
      font-size: 1.125rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 768px) {
      .page-header h1 {
        font-size: 2rem;
      }
      .section-padding {
        padding: 3rem 0;
      }
    }