: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);
    }

    /* Story Section */
    .story-section {
      background: var(--background);
    }
    
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    @media (max-width: 1024px) {
      .story-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .story-image {
      position: relative;
    }
    
    .story-image img {
      width: 100%;
      border-radius: 1rem;
      box-shadow: var(--shadow-strong);
    }
    
    .story-image::before {
      content: '';
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 18rem;
      height: 18rem;
      background: var(--gradient-accent);
      border-radius: 1rem;
      z-index: -1;
      opacity: 0.15;
    }
    
    .story-content .section-label {
      text-align: left;
    }
    
    .story-content h2 {
      font-size: clamp(2rem, 4vw, 2.5rem);
      margin-bottom: 1.5rem;
    }
    
    .story-content p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    
    .timeline {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
    }
    
    .timeline-item {
      text-align: center;
    }
    
    .timeline-year {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .timeline-label {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Vision Mission */
    .vm-section {
      background: var(--background-alt);
    }
    
    .vm-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    @media (max-width: 768px) {
      .vm-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .vm-card {
      background: var(--card);
      border-radius: 1rem;
      padding: 3rem;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.5s ease;
    }
    
    .vm-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-strong);
    }
    
    .vm-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary);
    }
    
    .vm-card:nth-child(2)::before {
      background: var(--gradient-accent);
    }
    
    .vm-icon {
      width: 4rem;
      height: 4rem;
      border-radius: 1rem;
      background: hsla(210, 65%, 28%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    
    .vm-card:nth-child(2) .vm-icon {
      background: hsla(355, 65%, 48%, 0.1);
    }
    
    .vm-icon svg {
      width: 2rem;
      height: 2rem;
      color: var(--primary);
    }
    
    .vm-card:nth-child(2) .vm-icon svg {
      color: var(--accent);
    }
    
    .vm-card h3 {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
    
    .vm-card p {
      color: var(--muted-foreground);
      line-height: 1.8;
    }
    
    .vm-quote {
      font-style: italic;
      border-left: 4px solid var(--primary);
      padding-left: 1.5rem;
      margin-top: 1.5rem;
      color: var(--foreground);
    }

    /* Partners Section */
    .partners-section {
      background: var(--background);
    }
    
    .partners-intro {
      max-width: 800px;
      margin: 0 auto 3rem;
      text-align: center;
    }
    
    .partners-intro p {
      color: var(--muted-foreground);
      font-size: 1.125rem;
      line-height: 1.8;
    }
    
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
    }
    
    .partner-card {
      background: var(--card);
      padding: 2rem;
      border-radius: 0.75rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      border: 2px solid transparent;
    }
    
    .partner-card:hover {
      transform: translateY(-0.25rem);
      box-shadow: var(--shadow-medium);
      border-color: var(--primary);
    }
    
    .partner-card h4 {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    
    .partner-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Expertise Section */
    .expertise-section {
      background: var(--gradient-hero);
    }
    
    .expertise-section .section-label {
      color: var(--accent-light);
    }
    
    .expertise-section .section-header h2 {
      color: var(--primary-foreground);
    }
    
    .expertise-section .section-header p {
      color: rgba(255,255,255,0.8);
    }
    
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    
    .expertise-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;
    }
    
    .expertise-card:hover {
      transform: translateY(-0.5rem);
    }
    
    .expertise-icon {
      width: 4rem;
      height: 4rem;
      margin: 0 auto 1.5rem;
      border-radius: 1rem;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .expertise-icon svg {
      width: 2rem;
      height: 2rem;
      color: var(--primary-foreground);
    }
    
    .expertise-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
    
    .expertise-card p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    /* Values Grid */
    .values-section {
      background: var(--background-alt);
    }
    
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .value-card {
      background: var(--card);
      padding: 2rem;
      border-radius: 1rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.5s;
      border-bottom: 4px solid transparent;
    }
    
    .value-card:hover {
      transform: translateY(-0.5rem);
      border-bottom-color: var(--accent);
    }
    
    .value-icon {
      width: 3.5rem;
      height: 3.5rem;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: hsla(355, 65%, 48%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .value-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: var(--accent);
    }
    
    .value-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }
    
    .value-card p {
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

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