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

:root {
    --background: #ffffff;
    --foreground: #171717;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0a0a0a;
        --foreground: #ededed;
    }
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

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

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

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

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

/* Background Colors */
.bg-white {
    background-color: #ffffff;
}

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

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-blue-800 {
    background-color: #1e40af;
}

.bg-blue-700 {
    background-color: #1d4ed8;
}

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

.bg-purple-700 {
    background-color: #7c3aed;
}

.bg-orange-600 {
    background-color: #ea580c;
}

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

.bg-indigo-700 {
    background-color: #4338ca;
}

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

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

.bg-blue-900 {
    background-color: #1e3a8a;
}

/* Text Colors */
.text-white {
    color: #ffffff;
}

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

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

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

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

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

.text-blue-700 {
    color: #1d4ed8;
}

.text-blue-800 {
    color: #1e40af;
}

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

.text-purple-700 {
    color: #7c3aed;
}

.text-orange-600 {
    color: #ea580c;
}

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

.text-indigo-700 {
    color: #4338ca;
}

/* Typography */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

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

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

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

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

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

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

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

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

.text-left {
    text-align: left;
}

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

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

.mt-12 {
    margin-top: 3rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Flexbox */
.flex {
    display: flex;
}

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

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

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

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

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

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

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

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 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-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

@media (min-width: 768px) {
    .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\:flex {
        display: flex;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .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\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Responsive Text */
@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1e40af;
}

.btn-white {
    background-color: #ffffff;
    color: #1e40af;
}

.btn-white:hover {
    background-color: #f3f4f6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #1e40af, #7c3aed);
    color: #ffffff;
    padding: 5rem 0;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Section Titles */
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

/* Curricula Grid */
.curricula-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .curricula-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .curricula-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.curriculum-card {
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.curriculum-card:hover {
    transform: scale(1.05);
}

.curriculum-card h3 {
    font-weight: 600;
}

/* Subjects Grid */
.subjects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .subjects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .subjects-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.subject-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease-in-out;
    cursor: pointer;
    border-left: 4px solid #2563eb;
}

.subject-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.subject-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.subject-card h3 {
    font-weight: 600;
    text-align: center;
    color: #1f2937;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.feature-card p {
    color: #4b5563;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e5e7eb;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    height: 4rem;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: #374151;
}

.nav-link:hover {
    color: #2563eb;
    background-color: #f9fafb;
}

.nav-link.active {
    color: #2563eb;
    background-color: #eff6ff;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Cards */
.card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.table th {
    background-color: #1f2937;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #111827;
}

.table tbody tr:hover {
    background-color: #f9fafb;
}

/* Forms */
.form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
    padding: 0.5rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background-color: #ffffff;
    transition: all 0.2s ease-in-out;
}

.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    color: #ffffff;
}

.badge-blue {
    background-color: #1d4ed8;
}

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

.badge-gray {
    background-color: #1f2937;
}

.badge-orange {
    background-color: #ea580c;
}

.badge-red {
    background-color: #dc2626;
}

.badge-purple {
    background-color: #7c3aed;
}

.badge-indigo {
    background-color: #4338ca;
}

/* Utilities */
.hidden {
    display: none;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

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

.cursor-pointer {
    cursor: pointer;
}

.transition-colors {
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.transition-shadow {
    transition: box-shadow 0.2s ease-in-out;
}

.transition-transform {
    transition: transform 0.2s ease-in-out;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

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

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

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

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

.hover\:text-blue-700:hover {
    color: #1d4ed8;
}

.hover\:text-blue-800:hover {
    color: #1e40af;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:bg-blue-800:hover {
    background-color: #1e40af;
}

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

.hover\:bg-green-800:hover {
    background-color: #166534;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

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

/* Border utilities */
.border-l-4 {
    border-left-width: 4px;
}

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

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

.border-l-blue-700 {
    border-left-color: #1d4ed8;
}

.border-l-green-700 {
    border-left-color: #15803d;
}

.border-l-purple-700 {
    border-left-color: #7c3aed;
}

.border-l-orange-600 {
    border-left-color: #ea580c;
}

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

.border-l-indigo-700 {
    border-left-color: #4338ca;
}

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

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

.border-gray-300 {
    border-color: #d1d5db;
}

.border-blue-700 {
    border-color: #1d4ed8;
}

.border-blue-900 {
    border-color: #1e3a8a;
}

/* Background utilities for borders */
.bg-blue-50 {
    background-color: #eff6ff;
}

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

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

.bg-orange-50 {
    background-color: #fff7ed;
}

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

.bg-indigo-50 {
    background-color: #eef2ff;
}

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

/* Shadow utilities */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

/* Rounded utilities */
.rounded {
    border-radius: 0.25rem;
}

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

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

.rounded-md {
    border-radius: 0.375rem;
}

/* Opacity utilities */
.opacity-90 {
    opacity: 0.9;
}

/* Position utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.right-2 {
    right: 0.5rem;
}

.top-2 {
    top: 0.5rem;
}

/* Width utilities */
.w-full {
    width: 100%;
}

/* Height utilities */
.h-16 {
    height: 4rem;
}

/* Flex utilities */
.flex-wrap {
    flex-wrap: wrap;
}

/* Text utilities */
.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Display utilities */
.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

/* Max width utilities */
.max-w-3xl {
    max-width: 48rem;
}

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

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

/* Padding utilities */
.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.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;
}

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

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

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

/* Text size utilities */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

/* Font weight utilities */
.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

/* Color utilities */
.text-yellow-500 {
    color: #eab308;
}

.text-blue-100 {
    color: #dbeafe;
}

/* Background color utilities */
.bg-gray-100 {
    background-color: #f3f4f6;
}

/* Border utilities */
.divide-y > * + * {
    border-top: 1px solid #e5e7eb;
}

.divide-gray-200 > * + * {
    border-top-color: #e5e7eb;
}

/* Responsive utilities */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
}

/* Additional specific styles for complex layouts */
.space-y-1 > * + * {
    margin-top: 0.25rem;
}

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

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

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

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

/* Focus utilities */
.focus\:ring-2:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.focus\:ring-blue-700:focus {
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.5);
}

.focus\:border-transparent:focus {
    border-color: transparent;
}

/* Hover utilities for specific elements */
.hover\:bg-blue-600:hover {
    background-color: #2563eb;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:bg-blue-800:hover {
    background-color: #1e40af;
}

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

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

.hover\:bg-green-800:hover {
    background-color: #166534;
}

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

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

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

.hover\:text-blue-700:hover {
    color: #1d4ed8;
}

.hover\:text-blue-800:hover {
    color: #1e40af;
}

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

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

/* Additional responsive grid utilities */
@media (min-width: 768px) {
    .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-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .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\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

/* Additional text size utilities */
@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

/* Additional spacing utilities */
.mb-1 {
    margin-bottom: 0.25rem;
}

/* Additional display utilities */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:hidden {
        display: none;
    }
}

/* Additional responsive utilities */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
}

/* Additional text utilities */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

/* Additional margin utilities */
.mb-1 {
    margin-bottom: 0.25rem;
}

/* Additional padding utilities */
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* Additional color utilities */
.text-yellow-500 {
    color: #eab308;
}

.text-blue-100 {
    color: #dbeafe;
}

/* Additional background color utilities */
.bg-gray-100 {
    background-color: #f3f4f6;
}

/* Additional border utilities */
.divide-y > * + * {
    border-top: 1px solid #e5e7eb;
}

.divide-gray-200 > * + * {
    border-top-color: #e5e7eb;
}

/* Additional responsive utilities */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
}

/* Additional specific styles for complex layouts */
.space-y-1 > * + * {
    margin-top: 0.25rem;
}

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

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

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

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-8 > * + * {
    margin-left: 2rem;
}

/* Focus utilities */
.focus\:ring-2:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.focus\:ring-blue-700:focus {
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.5);
}

.focus\:border-transparent:focus {
    border-color: transparent;
}

/* Hover utilities for specific elements */
.hover\:bg-blue-600:hover {
    background-color: #2563eb;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:bg-blue-800:hover {
    background-color: #1e40af;
}

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

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

.hover\:bg-green-800:hover {
    background-color: #166534;
}

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

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

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

.hover\:text-blue-700:hover {
    color: #1d4ed8;
}

.hover\:text-blue-800:hover {
    color: #1e40af;
}

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

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