body {
    font-family: Arial, sans-serif;
  }
  
  .py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .bg-white {
    background-color: white;
  }
  
  .dark\:bg-gray-900 {
    background-color: #1a202c;
  }
  
  .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .md\:flex-row {
    flex-direction: row;
  }
  
  .items-center {
    align-items: center;
  }
  
  .gap-12 {
    gap: 3rem;
  }
  
  .w-full {
    width: 100%;
  }
  
  .md\:w-1\/2 {
    width: 50%;
  }
  
  .transition-all {
    transition-property: all;
  }
  
  .duration-1000 {
    transition-duration: 1000ms;
  }
  
  .opacity-0 {
    opacity: 0;
  }
  
  .opacity-100 {
    opacity: 1;
  }
  
  .-translate-x-12 {
    transform: translateX(-3rem);
  }
  
  .translate-x-0 {
    transform: translateX(0);
  }
  
  .delay-300 {
    transition-delay: 300ms;
  }
  
  .aspect-square {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.2s ease-in;
}

.aspect-square:hover {
  scale: 1.08;
  border-radius: 70px;
}

.aspect-square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 10px;
}
  
  .rounded-2xl {
    border-radius: 1rem;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .bg-gradient-to-br {
    background: linear-gradient(to bottom right, #f3f4f6, #e9d5ff);
  }
  
  .from-blue-100 {
    background-color: #ebf8ff;
  }
  
  .to-purple-100 {
    background-color: #f3e8ff;
  }
  
  .dark\:from-blue-900 {
    background-color: #2a4365;
  }
  
  .dark\:to-purple-900 {
    background-color: #6d28d9;
  }
  
  .absolute {
    position: absolute;
  }
  
  .inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .flex {
    display: flex;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .h-32 {
    height: 8rem;
  }
  
  .w-32 {
    width: 8rem;
  }
  
  .text-blue-600 {
    color: #2563eb;
  }
  
  .dark\:text-blue-400 {
    color: #60a5fa;
  }
  
  .text-3xl {
    font-size: 1.875rem;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .text-gray-700 {
    color: #4a5568;
  }
  
  .dark\:text-gray-300 {
    color: #e2e8f0;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
 