body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
    color: #1e293b;
  }
  .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .relative {
    position: relative;
  }
  .absolute {
    position: absolute;
  }
  .inset-0 {
    top: 0; right: 0; bottom: 0; left: 0;
  }
  .bg-gradient {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
  }
  .flex {
    display: flex;
  }
  .items-center {
    align-items: center;
  }
  .justify-center {
    justify-content: center;
  }
  .text-white {
    color: white;
  }
  .text-blue-900 {
    color: #2f2e7c;
  }
  .bg-blue-900 {
    background-color: #2f2e7c;
  }
  .bg-white {
    background-color: white;
  }
  .bg-gray-50 {
    background-color: #f9fafb;
  }
  .bg-gray-100 {
    background-color: #f3f4f6;
  }
  .bg-gray-200 {
    background-color: #e5e7eb;
  }
  .bg-gray-600 {
    color: #4b5563;
  }
  .rounded-full {
    border-radius: 9999px;
  }
  .rounded-lg {
    border-radius: 0.5rem;
  }
  .shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  }
  .shadow-md {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .font-bold {
    font-weight: 700;
  }
  .font-semibold {
    font-weight: 600;
  }
  .font-serif {
    font-family: serif;
  }
  .text-5xl {
    font-size: 3rem;
    line-height: 1.2;
  }
  .text-7xl {
    font-size: 4.5rem;
    line-height: 1.1;
  }
  .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  .mb-4 {
    margin-bottom: 1rem;
  }
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  .mb-8 {
    margin-bottom: 2rem;
  }
  .mb-12 {
    margin-bottom: 3rem;
  }
  .mt-4 {
    margin-top: 1rem;
  }
  .p-4 {
    padding: 1rem;
  }
  .p-6 {
    padding: 1.5rem;
  }
  .p-8 {
    padding: 2rem;
  }
  .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-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .grid {
    display: grid;
  }
  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gap-2 {
    gap: 0.5rem;
  }
  .gap-4 {
    gap: 1rem;
  }
  .gap-6 {
    gap: 1.5rem;
  }
  .gap-8 {
    gap: 2rem;
  }
  .max-w-2xl {
    max-width: 42rem;
  }
  .max-w-xs {
    max-width: 20rem;
  }
  .max-w-sm {
    max-width: 24rem;
  }
  .max-w-md {
    max-width: 28rem;
  }
  .max-w-lg {
    max-width: 32rem;
  }
  .max-w-xl {
    max-width: 36rem;
  }
  .max-w-7xl {
    max-width: 80rem;
  }
  .w-full {
    width: 100%;
  }
  .h-48 {
    height: 16rem; /* increased from 12rem */
  }
  .h-96 {
    height: 24rem;
  }
  .h-[50vh] {
    height: 50vh;
  }
  .object-cover {
    object-fit: cover;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .border {
    border-width: 1px;
    border-style: solid;
  }
  .border-blue-900 {
    border-color: #2f2e7c;
  }
  .hover-bg-gray-100:hover {
    background-color: #f3f4f6;
  }
  .hover-text-blue-700:hover {
    color: #1d4ed8;
  }
  .hover-bg-gray-200:hover {
    background-color: #e5e7eb;
  }
  .transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ml-2 {
    margin-left: 0.5rem;
  }
  .text-gray-600 {
    color: #4b5563;
  }
  .text-blue-700 {
    color: #1d4ed8;
  }
  .text-gray-900 {
    color: #111827;
  }
  .bg-transparent {
    background-color: transparent;
  }
  .border-white {
    border-color: white;
  }
  .hover-bg-white-10:hover {
    background-color: rgba(255,255,255,0.1);
  }
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .gap-4 > * {
    margin: 0.5rem;
  }
  @media (min-width: 768px) {
    .md\\:text-7xl {
      font-size: 4.5rem;
      line-height: 1.1;
    }
    .md\\:text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }
    .md\\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }