/* Base styles */
:root {
    --primary: #134276;
    --secondary: #00bbff;
    --light-blue: #e6f4ff;
    --accent: #ffbb33;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: 'Barlow', sans-serif;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .responsive-img {
    width: 90%;
    height: auto;
}
  
  /* Spacing */
  .px-4 { padding-left: 1rem; padding-right: 1rem; }
  .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .p-4 { padding: 1rem; }
  .p-6 { padding: 1.5rem; }
  .p-8 { padding: 2rem; }
  
  .mb-2 { margin-bottom: 0.5rem; }
  .mb-4 { margin-bottom: 1rem; }
  .mb-6 { margin-bottom: 1.5rem; }
  .mb-8 { margin-bottom: 2rem; }
  .mb-12 { margin-bottom: 3rem; }
  .mt-8 { margin-top: 2rem; }
  .mr-2 { margin-right: 0.5rem; }
  .mr-4 { margin-right: 1rem; }
  
  /* Typography */
  .text-center { text-align: center; }
  .font-bold { font-weight: 700; }
  .font-semibold { font-weight: 600; }
  
  /* Colors */
  .text-white { color: white; }
  .bg-white { background-color: white; }
  
  /* Exact color matches */
  .bg-primary { background-color: #134276; }
  .bg-secondary { background-color: #00bbff; }
  .bg-light-blue { background-color: #e6f4ff; }
  .bg-accent { background-color: #ffbb33; }

  .text-secondary { color: #ffbb33; }
  
  /* Flexbox */
  .flex { display: flex; }
  .inline-flex { display: inline-flex; }
  .flex-col { flex-direction: column; }
  .items-center { align-items: center; }
  .justify-center { justify-content: center; }
  .gap-6 { gap: 1.5rem; }
  .gap-8 { gap: 2rem; }
  .gap-12 { gap: 3rem; }
  .space-x-2 > * + * { margin-left: 0.5rem; }
  .space-y-4 > * + * { margin-top: 1rem; }
  .space-y-8 > * + * { margin-top: 2rem; }
  
  /* Grid */
  .grid { display: grid; }
  .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  
  /* Width */
  .max-w-2xl { max-width: 42rem; }
  .max-w-3xl { max-width: 48rem; }
  
  /* Borders & Shadows */
  .rounded-lg { border-radius: 0.5rem; }
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
  
  /* Icons */
  [data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .h-6 { height: 1.5rem; }
  .w-6 { width: 1.5rem; }
  .h-8 { height: 2rem; }
  .w-8 { width: 2rem; }
  
  /* Card Component */
  .card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  
  /* Links */
  .hover\:underline:hover {
    text-decoration: underline;
  }
  
  /* Address */
  .not-italic {
    font-style: normal;
  }
  
  /* Responsive */
  @media (min-width: 640px) {
    .sm\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:w-1\/2 { width: 50%; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  
  @media (min-width: 1024px) {
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  }
  /* Add more responsive padding classes */
  @media (max-width: 640px) {
    .container {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }
    
    .px-4 {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }
    
    .py-16 {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
    
    .py-20 {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
    
    .gap-8 {
      gap: 1rem;
    }
    
    .gap-12 {
      gap: 1.5rem;
    }
    
    /* Adjust card padding for mobile */
    .card {
      padding: 0.75rem;
    }

  }
  
  /* Add better responsive grid for smaller screens */
  @media (max-width: 480px) {
    .grid {
      grid-template-columns: 1fr !important;
    }
    
    .responsive-img {
      width: 95%;
    }
    
    ul.space-y-4 li {
      font-size: 1rem;
      line-height: 1.4;
    }
  }

  /* Add content container for text */
  .content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Add word-break for long text */
  p, li {
    word-break: break-word;
    hyphens: auto;
  }
  
  /* Update core values section */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    width: 100%;
  }
  
  .value-item {
    background-color: var(--light-blue);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
  }
  
  /* Update sections to stretch full width */
  section {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Update contact section styles */
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Update email link color */
  .email-link {
    color: var(--accent); /* This is #ffbb33 */
    font-weight: 600;
  }
  
  .email-link:hover {
    text-decoration: underline;
    opacity: 0.9;
  }
  
  /* Update footer text alignment */
  .footer-text {
    text-align: center;
  }