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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #fffbeb 0%, #f0fdf4 100%);
    min-height: 100vh;
}

.container {
    width: 100%;
}

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

.max-w-6xl {
    max-width: 72rem;
}

.p-8 {
    padding: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

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

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-9 {
    margin-left: 2.25rem;
}

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

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

.from-orange-50 {
    --tw-gradient-from: #fff7ed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 247 237 / 0));
}

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

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

.from-orange-100 {
    --tw-gradient-from: #ffedd5;
}

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

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

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

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

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

.bg-cyan-50 {
    background-color: #ecfeff;
}

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

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

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

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

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

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

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

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

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

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

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

.text-gray-500 {
    color: #6b7280;
}

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

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

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

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

.text-purple-700 {
    color: #6d28d9;
}

.text-red-700 {
    color: #b91c1c;
}

.text-cyan-700 {
    color: #0e7490;
}

.text-amber-700 {
    color: #b45309;
}

.text-emerald-700 {
    color: #047857;
}

.text-orange-700 {
    color: #c2410c;
}

.italic {
    font-style: italic;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Borders and Shadows */
.rounded-lg {
    border-radius: 0.5rem;
}

.rounded {
    border-radius: 0.25rem;
}

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

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

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

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

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

.pl-4 {
    padding-left: 1rem;
}

.pl-6 {
    padding-left: 1.5rem;
}

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

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

/* Section Styles */
.section {
    border-left-width: 4px;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.section-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-align: left;
    margin-bottom: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    padding: 0.5rem 0;
}

.section-btn:hover {
    opacity: 0.8;
}

.section-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    flex: 1;
}

.toggle-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.section-content {
    margin-left: 2.25rem;
    color: #374151;
}

.section-content > * + * {
    margin-top: 0.75rem;
}

/* Grid and Layout */
.grid-cols-1 {
    display: grid;
    grid-template-columns: 1fr;
}

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

.md-grid-cols-2 {
    @media (min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.md-grid-cols-4 {
    @media (min-width: 768px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-x-4 {
    column-gap: 1rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

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

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

.space-y-4 > * + * {
    margin-top: 1rem;
}

.grid-item {
    min-width: 0;
}

/* Lists */
.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

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

@media (max-width: 768px) {
    .p-8 {
        padding: 1rem;
    }
    
    .text-4xl {
        font-size: 1.875rem;
    }
    
    .text-xl {
        font-size: 1.125rem;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .md-grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .md-grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Border Colors */
.border-green-500 {
    border-color: #22c55e;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.border-purple-500 {
    border-color: #a855f7;
}

.border-amber-500 {
    border-color: #f59e0b;
}

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

/* Hide section content by default */
.section-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Show section content when active */
.section-content.active {
    display: block;
}

/* Rotate chevron when expanded */
.toggle-icon.rotated {
    transform: rotate(180deg);
}