*,
*::before,
*::after { box-sizing: border-box; }

html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { margin: 0; color: #211b0c; background: #f9f6f0; font-family: Inter, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button,
input,
select,
textarea { font: inherit; }
button { cursor: pointer; background: transparent; border: 0; }
img { max-width: 100%; height: auto; display: block; }
table { border-collapse: collapse; }

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.left-0 { left: 0; }
.left-3 { left: .75rem; }
.left-1\/2 { left: 50%; }
.right-0 { right: 0; }
.top-0 { top: 0; }
.top-1 { top: .25rem; }
.top-1\/2 { top: 50%; }
.top-3 { top: .75rem; }
.top-12 { top: 3rem; }
.right-1 { right: .25rem; }
.right-3 { right: .75rem; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.ml-1 { margin-left: .25rem; }
.ml-8 { margin-left: 2rem; }
.ml-64 { margin-left: 16rem; }
.mt-0\.5 { margin-top: .125rem; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.h-full { height: 100%; }
.h-1\.5 { height: .375rem; }
.h-2 { height: .5rem; }
.h-3 { height: .75rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.min-h-screen { min-height: 100vh; }
.max-h-72 { max-height: 18rem; }
.w-full { width: 100%; }
.w-5\/12 { width: 41.666667%; }
.w-2 { width: .5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.size-8 { width: 2rem; height: 2rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.min-w-0 { min-width: 0; }
.min-w-\[18px\] { min-width: 18px; }

.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: .25rem; }
.gap-1\.5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.space-y-0\.5 > * + * { margin-top: .125rem; }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-1\.5 > * + * { margin-top: .375rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-12 { grid-column: span 12 / span 12; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }

.rounded { border-radius: .25rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[24px\] { border-radius: 24px; }
.rounded-\[32px\] { border-radius: 32px; }
.rounded-t-xl { border-top-left-radius: .75rem; border-top-right-radius: .75rem; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-none { border: 0; }
.border-white { border-color: #fff; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.border-slate-200\/50 { border-color: rgba(226,232,240,.5); }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.border-white\/40 { border-color: rgba(255,255,255,.4); }
.border-white\/60 { border-color: rgba(255,255,255,.6); }
.border-indigo-900\/5 { border-color: rgba(49,46,129,.05); }
.border-indigo-900\/10 { border-color: rgba(49,46,129,.1); }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.border-blue-200 { border-color: #bfdbfe; }
.border-primary { border-color: #349236; }
.border-secondary { border-color: #006875; }

.bg-white { background: #fff; }
.bg-\[\#f8f6f6\] { background: #f8f6f6; }
.bg-background-light { background: #f8f6f6; }
.bg-transparent { background: transparent; }
.bg-primary { background: #349236; }
.bg-secondary { background: #006875; }
.bg-amber-400 { background: #fbbf24; }
.bg-amber-100 { background: #fef3c7; }
.bg-red-50 { background: #fef2f2; }
.bg-red-100 { background: #fee2e2; }
.bg-red-500 { background: #ef4444; }
.bg-green-50 { background: #f0fdf4; }
.bg-green-100 { background: #dcfce7; }
.bg-green-400 { background: #4ade80; }
.bg-blue-50 { background: #eff6ff; }
.bg-indigo-50 { background: #eef2ff; }
.bg-indigo-100 { background: #e0e7ff; }
.bg-gray-100 { background: #f3f4f6; }
.bg-stone-50\/80 { background: rgba(250,250,249,.8); }
.bg-stone-100\/50 { background: rgba(245,245,244,.5); }
.bg-white\/10 { background: rgba(255,255,255,.1); }
.bg-white\/20 { background: rgba(255,255,255,.2); }
.bg-white\/50 { background: rgba(255,255,255,.5); }
.bg-white\/60 { background: rgba(255,255,255,.6); }
.bg-white\/70 { background: rgba(255,255,255,.7); }
.bg-white\/80 { background: rgba(255,255,255,.8); }
.bg-slate-100 { background: #f1f5f9; }
.bg-primary\/5 { background: rgba(52,146,54,.05); }
.bg-primary\/10 { background: rgba(52,146,54,.1); }
.bg-primary\/20 { background: rgba(52,146,54,.2); }
.bg-secondary\/5 { background: rgba(0,104,117,.05); }
.bg-secondary\/10 { background: rgba(0,104,117,.1); }
.bg-secondary\/20 { background: rgba(0,104,117,.2); }
.bg-indigo-900\/5 { background: rgba(49,46,129,.05); }
.bg-indigo-900\/10 { background: rgba(49,46,129,.1); }
.bg-indigo-50\/30 { background: rgba(238,242,255,.3); }
.bg-indigo-50\/50 { background: rgba(238,242,255,.5); }
.bg-indigo-50\/60 { background: rgba(238,242,255,.6); }
.bg-surface-container-low { background: #fff2d9; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops, #349236, #006875)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, #349236, #006875)); }
.from-primary { --tw-gradient-stops: #349236, var(--tw-gradient-to, #006875); }
.to-secondary { --tw-gradient-to: #006875; }
.from-indigo-50 { --tw-gradient-stops: #eef2ff, var(--tw-gradient-to, #f0fdfa); }
.to-teal-50 { --tw-gradient-to: #f0fdfa; }
.from-primary\/90 { --tw-gradient-stops: rgba(52,146,54,.9), var(--tw-gradient-to, rgba(0,104,117,.8)); }
.to-secondary\/80 { --tw-gradient-to: rgba(0,104,117,.8); }

.object-cover { object-fit: cover; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-display { font-family: Manrope, Inter, Arial, sans-serif; }
.font-body { font-family: Inter, Arial, sans-serif; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[19px\] { font-size: 19px; }
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }
.text-\[24px\] { font-size: 24px; }
.text-\[32px\] { font-size: 32px; }
.text-\[56px\] { font-size: 56px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[120px\] { font-size: 120px; }

.text-white { color: #fff; }
.text-slate-900 { color: #0f172a; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-primary { color: #349236; }
.text-secondary { color: #006875; }
.text-on-surface { color: #211b0c; }
.text-indigo-900 { color: #312e81; }
.text-indigo-700 { color: #4338ca; }
.text-indigo-600 { color: #4f46e5; }
.text-indigo-300 { color: #a5b4fc; }
.text-indigo-200 { color: #c7d2fe; }
.text-amber-400 { color: #fbbf24; }
.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-700 { color: #b45309; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-red-300 { color: #fca5a5; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-blue-500 { color: #3b82f6; }
.text-blue-800 { color: #1e40af; }
.text-gray-400 { color: #9ca3af; }
.text-white\/30 { color: rgba(255,255,255,.3); }
.text-white\/40 { color: rgba(255,255,255,.4); }
.text-white\/60 { color: rgba(255,255,255,.6); }
.text-white\/70 { color: rgba(255,255,255,.7); }
.text-white\/80 { color: rgba(255,255,255,.8); }
.text-indigo-900\/30 { color: rgba(49,46,129,.3); }
.text-indigo-900\/40 { color: rgba(49,46,129,.4); }
.text-indigo-900\/50 { color: rgba(49,46,129,.5); }
.text-indigo-900\/60 { color: rgba(49,46,129,.6); }
.text-indigo-900\/70 { color: rgba(49,46,129,.7); }

.p-1 { padding: .25rem; }
.p-2 { padding: .5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.py-0\.5 { padding-top: .125rem; padding-bottom: .125rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-2\.5 { padding-top: .625rem; padding-bottom: .625rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-3\.5 { padding-top: .875rem; padding-bottom: .875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-1 { padding-left: .25rem; padding-right: .25rem; }
.px-1\.5 { padding-left: .375rem; padding-right: .375rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-2\.5 { padding-left: .625rem; padding-right: .625rem; }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.pt-3 { padding-top: .75rem; }
.pt-4 { padding-top: 1rem; }
.pb-1 { padding-bottom: .25rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-11 { padding-left: 2.75rem; }
.pl-12 { padding-left: 3rem; }
.pr-4 { padding-right: 1rem; }
.pr-10 { padding-right: 2.5rem; }
.pr-12 { padding-right: 3rem; }
.outline-none { outline: 0; }
.blur-3xl { filter: blur(64px); }
.-z-0 { z-index: 0; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.shadow-md { box-shadow: 0 4px 8px rgba(0,0,0,.08); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0,0,0,.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0,0,0,.18); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.transition-all,
.transition-colors,
.transition-opacity,
.transition-transform { transition-duration: .15s; transition-timing-function: ease; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.opacity-0 { opacity: 0; }
.opacity-10 { opacity: .1; }
.opacity-20 { opacity: .2; }
.opacity-60 { opacity: .6; }
.opacity-70 { opacity: .7; }
.opacity-80 { opacity: .8; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.scale-95 { transform: scale(.95); }
.divide-y > * + * { border-top: 1px solid rgba(49,46,129,.05); }
.list-disc { list-style: disc; }
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: "Material Symbols Outlined";
}
body.icons-font-missing .material-symbols-outlined {
    font-size: 0 !important;
    width: 1.1em;
    min-width: 1.1em;
    height: 1.1em;
    overflow: hidden;
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
}

@media (min-width: 1024px) {
    .lg\:hidden { display: none !important; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

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