/*! Tailwind CSS v3.4.1 - Custom build for Arcuity */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --arcuity-blue: #0055A4;
  --arcuity-deep-blue: #003366;
  --arcuity-light-blue: #4A90E2;
  --arcuity-charcoal: #333333;
  --arcuity-light-gray: #F5F7FA;
  --status-green: #81C784;
  --status-orange: #FFB74D;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--arcuity-light-gray);
  color: var(--arcuity-charcoal);
  line-height: 1.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--arcuity-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--arcuity-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--arcuity-light-blue);
  text-decoration: underline;
}

/* Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--arcuity-blue);
  color: white;
}

.btn-primary:hover {
  background-color: var(--arcuity-light-blue);
  box-shadow: 0 4px 12px rgba(0, 85, 164, 0.3);
}

.btn-secondary {
  background-color: white;
  color: var(--arcuity-blue);
  border: 2px solid var(--arcuity-blue);
}

.btn-secondary:hover {
  background-color: var(--arcuity-blue);
  color: white;
}

.card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-success {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.badge-warning {
  background-color: #FFF3E0;
  color: #E65100;
}

/* Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.rounded-lg { border-radius: 0.5rem; }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.text-center { text-align: center; }
.text-white { color: white; }
.bg-white { background-color: white; }
.bg-arcuity-blue { background-color: var(--arcuity-blue); }
.bg-arcuity-deep-blue { background-color: var(--arcuity-deep-blue); }
.bg-arcuity-light-gray { background-color: var(--arcuity-light-gray); }
.text-arcuity-blue { color: var(--arcuity-blue); }
.w-full { width: 100%; }
.max-w-4xl { max-width: 56rem; }

/* Responsive */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.875rem; }
  
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
}
