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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f2937;
    background-color: #ffffff;
    line-height: 1.6;
}

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

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-white {
    background-color: #ffffff;
	padding: 10px;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-green-600 {
    background-color: #16a34a;
}

.bg-green-700 {
    background-color: #15803d;
}

.bg-emerald-50 {
    background-color: #f0fdf4;
}

.bg-emerald-100 {
    background-color: #dcfce7;
}

.bg-emerald-600 {
    background-color: #059669;
}

.bg-emerald-700 {
    background-color: #047857;
}

.bg-teal-50 {
    background-color: #f0fdfa;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.bg-purple-100 {
    background-color: #f3e8ff;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-amber-50 {
    background-color: #fffbeb;
}

.bg-amber-100 {
    background-color: #fef3c7;
}

.bg-amber-600 {
    background-color: #d97706;
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.bg-red-600 {
    background-color: #dc2626;
}

.text-white {
    color: #ffffff;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-900 {
    color: #111827;
}

.text-green-600 {
    color: #16a34a;
}

.text-green-100 {
    color: #dcfce7;
}

.text-blue-600 {
    color: #2563eb;
}

.text-purple-600 {
    color: #9333ea;
}

.text-amber-600 {
    color: #d97706;
}

.text-red-600 {
    color: #dc2626;
}

.text-teal-600 {
    color: #0d9488;
}

/* Spacing */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.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;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

/* Layout */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.grid {
    display: grid;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .md\:py-32 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .md\:py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:order-2 {
        order: 2;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .hidden {
        display: none;
    }
}

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

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .md\:flex {
        display: flex;
    }

    .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\:h-96 {
        height: 24rem;
    }

    .md\:p-12 {
        padding: 3rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
    }

    .md\:text-3xl {
        font-size: 1.875rem;
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:order-2 {
        order: 2;
    }
}

/* Buttons */
button {
    font-family: inherit;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

button:hover {
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

button:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* Cards and Sections */
.rounded-2xl {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-green-600 {
    border-color: #16a34a;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.border-blue-600 {
    border-color: #2563eb;
}

.border-purple-600 {
    border-color: #9333ea;
}

.border-amber-600 {
    border-color: #d97706;
}

.border-red-600 {
    border-color: #dc2626;
}

/* Shadows */
.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);
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Gradients */
.bg-gradient-to-br {
    background-image: linear-gradient(135deg, var(--tw-gradient-stops));
}

.from-green-50 {
    --tw-gradient-stops: #f0fdf4, var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.via-emerald-50 {
    --tw-gradient-stops: #f0fdf4, #f0fdf4, var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.to-teal-50 {
    --tw-gradient-to: #f0fdfa;
}

.from-green-100 {
    --tw-gradient-stops: #dcfce7, var(--tw-gradient-to, rgba(220, 252, 231, 0));
}

.to-emerald-100 {
    --tw-gradient-to: #dcfce7;
}

.from-blue-50 {
    --tw-gradient-stops: #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0));
}

.to-blue-100 {
    --tw-gradient-to: #dbeafe;
}

.from-purple-50 {
    --tw-gradient-stops: #faf5ff, var(--tw-gradient-to, rgba(250, 245, 255, 0));
}

.to-purple-100 {
    --tw-gradient-to: #f3e8ff;
}

.from-amber-50 {
    --tw-gradient-stops: #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0));
}

.to-amber-100 {
    --tw-gradient-to: #fef3c7;
}

.from-red-50 {
    --tw-gradient-stops: #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0));
}

.to-red-100 {
    --tw-gradient-to: #fee2e2;
}

.from-green-600 {
    --tw-gradient-stops: #16a34a, var(--tw-gradient-to, rgba(22, 163, 74, 0));
}

.to-emerald-700 {
    --tw-gradient-to: #047857;
}

.from-green-50 {
    --tw-gradient-stops: #f0fdf4, var(--tw-gradient-to, rgba(240, 253, 244, 0));
}

.to-emerald-50 {
    --tw-gradient-to: #f0fdf4;
}

/* Transitions */
.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover\:bg-green-50:hover {
    background-color: #f0fdf4;
}

.hover\:bg-green-700:hover {
    background-color: #15803d;
}

.hover\:bg-green-50:hover {
    background-color: #f0fdf4;
}

.hover\:opacity-80:hover {
    opacity: 0.8;
}

.hover\:text-green-600:hover {
    color: #16a34a;
}

.hover\:text-white:hover {
    color: #ffffff;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-10 {
    top: 2.5rem;
}

.right-10 {
    right: 2.5rem;
}

.bottom-10 {
    bottom: 2.5rem;
}

.left-10 {
    left: 2.5rem;
}

/* Opacity */
.opacity-20 {
    opacity: 0.2;
}

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

/* Width and Height */
.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-32 {
    width: 8rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.h-32 {
    height: 8rem;
}

.h-80 {
    height: 20rem;
}

.h-96 {
    height: 24rem;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* Font Weight */
.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Font Size */
.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

/* Line Height */
.leading-relaxed {
    line-height: 1.625;
}

.leading-tight {
    line-height: 1.25;
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

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

img[alt] {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }

    button {
        display: none;
    }
}


