 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    :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);
    }

    /* Contact Section */
    .contact-section {
      background: var(--background);
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
    }
    
    @media (max-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .office-card {
      background: var(--card);
      border-radius: 1rem;
      padding: 3rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.5s ease;
      position: relative;
      overflow: hidden;
    }
    
    .office-card:hover {
      transform: translateY(-0.5rem);
      box-shadow: var(--shadow-strong);
    }
    
    .office-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary);
    }
    
    .office-card:nth-child(2)::before {
      background: var(--gradient-accent);
    }
    
    .office-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;
    }
    
    .office-card:nth-child(2) .office-icon {
      background: hsla(355, 65%, 48%, 0.1);
    }
    
    .office-icon svg {
      width: 2rem;
      height: 2rem;
      color: var(--primary);
    }
    
    .office-card:nth-child(2) .office-icon svg {
      color: var(--accent);
    }
    
    .office-card h3 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }
    
    .office-subtitle {
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }
    
    .contact-detail svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 0.25rem;
    }
    
    .office-card:nth-child(2) .contact-detail svg {
      color: var(--accent);
    }
    
    .contact-detail-content h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--muted-foreground);
      margin-bottom: 0.25rem;
    }
    
    .contact-detail-content p {
      color: var(--foreground);
    }
    
    .contact-detail-content a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .contact-detail-content a:hover {
      color: var(--accent);
    }

    /* CTA Section */
    .cta-section {
      background: var(--background-alt);
    }
    
    .cta-card {
      background: var(--gradient-hero);
      border-radius: 1.5rem;
      padding: 4rem;
      text-align: center;
      color: var(--primary-foreground);
    }
    
    .cta-card h2 {
      font-size: clamp(2rem, 4vw, 2.5rem);
      margin-bottom: 1rem;
    }
    
    .cta-card p {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-tagline {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-style: italic;
      color: var(--accent-light);
      margin-top: 2rem;
    }

    /* Quick Contact */
    .quick-contact {
      background: var(--background);
    }
    
    .quick-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    @media (max-width: 768px) {
      .quick-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .quick-card {
      background: var(--card);
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
    }
    
    .quick-card:hover {
      transform: translateY(-0.25rem);
      box-shadow: var(--shadow-medium);
    }
    
    .quick-icon {
      width: 4rem;
      height: 4rem;
      margin: 0 auto 1.5rem;
      border-radius: 50%;
      background: hsla(210, 65%, 28%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .quick-icon svg {
      width: 2rem;
      height: 2rem;
      color: var(--primary);
    }
    
    .quick-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
    
    .quick-card p {
      color: var(--muted-foreground);
      margin-bottom: 1rem;
    }
    
    .quick-card a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .quick-card a:hover {
      color: var(--accent);
    }

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