@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1E293B;
  background-color: #FFFFFF;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.875rem;
  line-height: 1.15;
}

@media (min-width: 640px) {
  h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Forms */
input,
textarea,
select {
  font-family: inherit;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  color: #94A3B8;
}

/* Utility Classes */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.break-words {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Scroll Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Transitions */
a, button, [role="button"] {
  transition: all 0.2s ease;
}

/* Focus States */
*:focus-visible {
  outline: 2px solid #1F3A5C;
  outline-offset: 2px;
}

/* Link Hover States */
a:hover {
  text-decoration: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: #1F3A5C;
  color: white;
  border-radius: 0.5rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #F8FAFB;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Print Styles */
@media print {
  body {
    background: white;
  }
  
  header,
  footer,
  [role="navigation"],
  .no-print {
    display: none;
  }
  
  a {
    text-decoration: underline;
  }
  
  img {
    max-width: 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #CBD5E1;
}

th {
  background-color: #F1F5F9;
  font-weight: 600;
  color: #475569;
}

tbody tr:hover {
  background-color: rgba(31, 58, 92, 0.02);
}

/* ApexCharts Tooltip Styling */
.apexcharts-tooltip {
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.18) !important;
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 8px 10px !important;
  font-family: Inter, system-ui, sans-serif !important;
  backdrop-filter: saturate(140%) blur(6px);
}

.apexcharts-tooltip-title {
  background: transparent !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  font-weight: 600 !important;
  padding: 4px 6px 8px !important;
  margin-bottom: 4px !important;
  color: #0f172a !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: -0.005em;
}

.apexcharts-tooltip-series-group {
  padding: 4px 6px !important;
}

.apexcharts-tooltip-marker {
  width: 8px !important;
  height: 8px !important;
  margin-right: 8px !important;
}

.apexcharts-tooltip-text-y-label,
.apexcharts-tooltip-text-y-value,
.apexcharts-tooltip-text-goals-label,
.apexcharts-tooltip-text-goals-value {
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  color: #475569 !important;
}

.apexcharts-tooltip-text-y-value {
  color: #0f172a !important;
  font-weight: 600 !important;
}

.apexcharts-xaxistooltip,
.apexcharts-yaxistooltip {
  display: none !important;
}

/* Custom Scrollbar for Details Elements */
details {
  transition: all 0.2s ease;
}

details[open] {
  background-color: rgba(31, 58, 92, 0.02);
}

/* Utility for overflow handling */
.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Aspect Ratio Helper */
.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Grid Utilities */
.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Spacing Utilities */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }

/* Grid Utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.auto-rows-max { grid-auto-rows: max-content; }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }
.leading-tight { line-height: 1.25; }

/* Display Utilities */
.hidden { display: none; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }

/* Opacity Utilities */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

/* Width & Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-60 { z-index: 60; }
.z-70 { z-index: 70; }
.z-80 { z-index: 80; }
.z-[100] { z-index: 100; }

/* Transform Utilities */
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.translate-y-0 { transform: translateY(0px); }
.translate-y-full { transform: translateY(100%); }
.translate-x-0 { transform: translateX(0px); }
.translate-x-full { transform: translateX(100%); }
.-translate-y-1 { transform: translateY(-0.25rem); }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Max Width */
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

/* Aspect Ratio Fixes */
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[5\/4\] { aspect-ratio: 5 / 4; }

/* Height Utilities */
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.min-h-\[44px\] { min-height: 44px; }
.min-h-\[52px\] { min-height: 52px; }

/* Width Utilities */
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Responsive Padding */
.sm\:p-6 {
  @media (min-width: 640px) {
    padding: 1.5rem;
  }
}

.sm\:p-8 {
  @media (min-width: 640px) {
    padding: 2rem;
  }
}

.sm\:px-6 {
  @media (min-width: 640px) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.sm\:py-4 {
  @media (min-width: 640px) {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* Responsive Display */
.sm\:flex {
  @media (min-width: 640px) {
    display: flex;
  }
}

.sm\:hidden {
  @media (min-width: 640px) {
    display: none;
  }
}

.lg\:flex {
  @media (min-width: 1024px) {
    display: flex;
  }
}

.lg\:hidden {
  @media (min-width: 1024px) {
    display: none;
  }
}

.lg\:grid {
  @media (min-width: 1024px) {
    display: grid;
  }
}

/* Responsive Text */
.sm\:text-lg {
  @media (min-width: 640px) {
    font-size: 1.125rem;
  }
}

.sm\:text-xl {
  @media (min-width: 640px) {
    font-size: 1.25rem;
  }
}

.lg\:text-2xl {
  @media (min-width: 1024px) {
    font-size: 1.5rem;
  }
}

.lg\:text-3xl {
  @media (min-width: 1024px) {
    font-size: 1.875rem;
  }
}

/* Responsive Grid */
.sm\:grid-cols-2 {
  @media (min-width: 640px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

/* Responsive Margins */
.sm\:mb-6 {
  @media (min-width: 640px) {
    margin-bottom: 1.5rem;
  }
}

.lg\:mb-8 {
  @media (min-width: 1024px) {
    margin-bottom: 2rem;
  }
}

/* Responsive Gap */
.sm\:gap-8 {
  @media (min-width: 640px) {
    gap: 2rem;
  }
}

.lg\:gap-12 {
  @media (min-width: 1024px) {
    gap: 3rem;
  }
}

/* Responsive Padding Section */
.sm\:py-16 {
  @media (min-width: 640px) {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.lg\:py-20 {
  @media (min-width: 1024px) {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.lg\:py-24 {
  @media (min-width: 1024px) {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.lg\:py-28 {
  @media (min-width: 1024px) {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

/* Responsive Max Width */
.lg\:max-w-4xl {
  @media (min-width: 1024px) {
    max-width: 56rem;
  }
}

/* Responsive Flex Direction */
.sm\:flex-row {
  @media (min-width: 640px) {
    flex-direction: row;
  }
}

.md\:flex-row {
  @media (min-width: 768px) {
    flex-direction: row;
  }
}

/* Responsive Items */
.md\:items-center {
  @media (min-width: 768px) {
    align-items: center;
  }
}

.lg\:items-center {
  @media (min-width: 1024px) {
    align-items: center;
  }
}

/* Responsive Columns */
.md\:grid-cols-2 {
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* Responsive Order */
.md\:order-1 {
  @media (min-width: 768px) {
    order: 1;
  }
}

.md\:order-2 {
  @media (min-width: 768px) {
    order: 2;
  }
}

.order-1 { order: 1; }
.order-2 { order: 2; }

/* Hover States */
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hover\:bg-slate-100:hover {
  background-color: #F1F5F9;
}

.hover\:bg-slate-200:hover {
  background-color: #E2E8F0;
}

.hover\:bg-slate-50:hover {
  background-color: #F8FAFB;
}

.hover\:text-accent:hover {
  color: #C85A54;
}

.hover\:text-primary:hover {
  color: #1F3A5C;
}

.hover\:border-primary:hover {
  border-color: #1F3A5C;
}

.hover\:gap-3:hover {
  gap: 0.75rem;
}

/* Active States */
.active\:scale-95:active {
  transform: scale(0.95);
}

/* Group Hover */
.group:hover .group-hover\:text-accent {
  color: #C85A54;
}

/* Focus Visible */
.focus-visible\:outline-none:focus-visible {
  outline: none;
}

.focus-visible\:ring-2:focus-visible {
  outline: 2px solid;
  outline-offset: 2px;
}

.focus-visible\:ring-primary:focus-visible {
  outline-color: #1F3A5C;
}

.focus-visible\:ring-offset-2:focus-visible {
  outline-offset: 2px;
}

/* Responsive Hover States */
.sm\:hover\:-translate-y-1:hover {
  @media (min-width: 640px) {
    transform: translateY(-0.25rem);
  }
}

.sm\:hover\:shadow-lg:hover {
  @media (min-width: 640px) {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
}

/* Additional Utilities */
.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink {
  flex-shrink: 1;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Border Utilities */
.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-l { border-left: 1px solid; }
.border-r { border-right: 1px solid; }
.border-slate-200 { border-color: #CBD5E1; }
.border-slate-300 { border-color: #CBD5E1; }
.border-primary { border-color: #1F3A5C; }
.border-accent { border-color: #C85A54; }

/* Background Utilities */
.bg-white { background-color: #FFFFFF; }
.bg-surface { background-color: #F8FAFB; }
.bg-surface-alt { background-color: #F1F5F9; }
.bg-primary { background-color: #1F3A5C; }
.bg-primary-dark { background-color: #0F2439; }
.bg-accent { background-color: #C85A54; }
.bg-slate-50 { background-color: #F8FAFB; }
.bg-slate-100 { background-color: #F1F5F9; }
.bg-slate-900 { background-color: #0F172A; }

/* Background with Opacity */
.bg-primary\/5 { background-color: rgba(31, 58, 92, 0.05); }
.bg-primary\/10 { background-color: rgba(31, 58, 92, 0.1); }
.bg-primary\/20 { background-color: rgba(31, 58, 92, 0.2); }
.bg-accent\/5 { background-color: rgba(200, 90, 84, 0.05); }
.bg-accent\/10 { background-color: rgba(200, 90, 84, 0.1); }
.bg-accent\/15 { background-color: rgba(200, 90, 84, 0.15); }
.bg-accent\/20 { background-color: rgba(200, 90, 84, 0.2); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }

/* Text Colors */
.text-white { color: #FFFFFF; }
.text-slate-900 { color: #0F172A; }
.text-slate-800 { color: #1E293B; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748B; }
.text-primary { color: #1F3A5C; }
.text-accent { color: #C85A54; }
.text-text-primary { color: #1E293B; }
.text-text-secondary { color: #475569; }
.text-text-muted { color: #64748B; }

/* Text with Opacity */
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

/* Shadow Utilities */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Custom Shadows */
.shadow-\[0_1px_2px_rgba\(0\,0\,0\,0\.04\)\] {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.shadow-\[0_8px_24px_-8px_rgba\(0\,0\,0\,0\.08\)\] {
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.08);
}

.shadow-\[0_20px_48px_-12px_rgba\(0\,0\,0\,0\.18\)\] {
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.18);
}

/* Blur Utilities */
.blur-3xl {
  filter: blur(64px);
}

.blur-2xl {
  filter: blur(40px);
}

.blur-sm {
  filter: blur(4px);
}

/* Backdrop Blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

/* Gradient Utilities */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-primary {
  --tw-gradient-from: #1F3A5C;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 58, 92, 0));
}

.from-primary-dark {
  --tw-gradient-from: #0F2439;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 36, 57, 0));
}

.to-primary-dark {
  --tw-gradient-to: #0F2439;
}

.to-accent {
  --tw-gradient-to: #C85A54;
}

/* Accent Utilities */
.accent-accent {
  accent-color: #C85A54;
}