/* General Body & Font Styles */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #ffffff;
    color: #000000;
    margin: 0;
    padding: 0;
}

/* Container & Layout */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* Spacing */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-5 { margin-right: 1.25rem; }

.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 4rem; }

/* Flexbox & Grid */
.flex { display: flex; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-x-8 { column-gap: 2rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-12 { row-gap: 3rem; }
.gap-10 { gap: 2.5rem; }

/* Typography */
.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-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }

/* Colors */
.text-gray-500 { color: #6B7280; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #4B5563; }
.text-gray-900 { color: #111827; }
.text-blue-600 { color: #2563EB; }

.bg-blue-100 { background-color: #DBEAFE; }
.bg-blue-500 { background-color: #3B82F6; }

/* Sizing */
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }

/* Borders & Dividers */
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #E5E7EB; }

.custom-hr {
    border: 0;
    height: 1px;
    background-color: #E5E7EB;
    margin: 4rem 0;
}

/* Special & Custom Components */
.gradient-text {
    /* background-image: linear-gradient(to right, #3B82F6, #8B5CF6); */
    -webkit-background-clip: text;
    background-clip: text;
    color: black;
    font-weight: 500;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Responsive Styles */
@media (min-width: 640px) { /* sm */
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 768px) { /* md */
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:mb-20 { margin-bottom: 5rem; }
    .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { margin-top: 5rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1.5; font-weight: 500;}
    .md\:gap-16 { gap: 4rem; }
}

@media (min-width: 1024px) { /* lg */
    .lg\:px-8 { padding-top:0rem; padding-left: 2rem; padding-right: 2rem; padding-bottom: 0rem; }
}