/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #9ca3af;
}

li {
    list-style: none;
}

footer li {
    color: #ffffff;

}

button{
    border: none;
}

/* Utility classes */
.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.z-50 {
    z-index: 50;
}

.bg-white {
    background-color: #ffffff;
}

.bg-opacity-95 {
    background-color: rgba(255, 255, 255, 0.95);
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.h-20 {
    height: 5rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.text-neutral-700 {
    color: #374151;
}

.hover\:text-amber-600:hover {
    color: #d97706;
}

.transition-colors {
    transition: color 0.15s ease-in-out;
}

.hidden {
    display: none;
}

.md\:flex {
    display: flex;
}

.gap-8 {
    gap: 2rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.bg-amber-600 {
    background-color: #d97706;
}

.hover\:bg-amber-700:hover {
    background-color: #b45309;
}

.text-white {
    color: #ffffff;
}

.md\:hidden {
    display: none;
}

.p-2 {
    padding: 0.5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.flex-col {
    flex-direction: column;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.h-screen {
    height: 100vh;
}

.justify-center {
    justify-content: center;
}

.overflow-hidden {
    overflow: hidden;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.bg-black {
    background-color: #000000;
}

.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.z-10 {
    z-index: 10;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-opacity-90 {
    color: rgba(255, 255, 255, 0.9);
}

.gap-4 {
    gap: 1rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.bg-opacity-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.hover\:bg-opacity-20:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-white {
    border-color: #ffffff;
}

.border-opacity-30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-neutral-50 {
    background-color: #fafafa;
}

.grid {
    display: grid;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-12 {
    gap: 3rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-neutral-900 {
    color: #111827;
}

.text-neutral-600 {
    color: #4b5563;
}

.mb-4 {
    margin-bottom: 1rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.h-500px {
    height: 500px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.group {
    position: relative;
}

.cursor-pointer {
    cursor: pointer;
}

.h-64 {
    height: 16rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.transition-transform {
    transition: transform 0.15s ease-in-out;
}

.duration-300 {
    transition-duration: 300ms;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.justify-between {
    justify-content: space-between;
}

.items-start {
    align-items: flex-start;
}

.text-amber-600 {
    color: #d97706;
}

.font-semibold {
    font-weight: 600;
}

.max-w-2xl {
    max-width: 42rem;
}

.mt-12 {
    margin-top: 3rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.rounded-full {
    border-radius: 9999px;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.border-neutral-300 {
    border-color: #d1d5db;
}

.focus\:border-amber-600:focus {
    border-color: #d97706;
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.rows-4 {
    grid-row: span 4 / span 4;
}

.bg-neutral-900 {
    background-color: #111827;
}

.text-neutral-400 {
    color: #9ca3af;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mb-8 {
    margin-bottom: 2rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.bg-neutral-800 {
    background-color: #1f2937;
}

.border-t {
    border-top-width: 1px;
}

.border-neutral-800 {
    border-color: #1f2937;
}

.pt-8 {
    padding-top: 2rem;
}

/* Responsive design */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .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\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
}