/* Color Palette (inspired by Tailwind CSS) */
:root {
    --blue-600: #131c24;
    --blue-800: #131c24;
    --blue-900: #131c24;
    --yellow-500: #f59e0b;
    --yellow-600: #d97706;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --white: #ffffff;
}

/* Base Styles */
body {
    background-color: var(--gray-100);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lრ

System: lg:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.text-center {
    text-align: center;
}

.bg-white {
    background-color: var(--white);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.text-blue-600 {
    color: var(--blue-600);
}

.text-yellow-500 {
    color: var(--yellow-500);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gap-8 {
    gap: 2rem;
}

.border {
    border: 1px solid var(--gray-300);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.p-6 {
    padding: 1.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.w-full {
    width: 100%;
}

.h-32 {
    height: 8rem;
}

.space-y-4 > :not(:last-child) {
    margin-bottom: 1rem;
}

.space-y-6 > :not(:last-child) {
    margin-bottom: 1.5rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.inline-block {
    display: inline-block;
}

.transition {
    transition: all 0.3s ease;
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* Responsive Design for Tailwind-like Utilities */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm\:text-5xl {
        font-size: 3rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}