/* Общие стили для контейнера */
.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .flex {
    display: flex;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .min-h-[60vh] {
    min-height: 60vh;
  }
  
  /* Карточка */
  .max-w-lg {
    max-width: 32rem;
  }
  
  .w-full {
    width: 100%;
  }
  
  .border {
    border-width: 1px;
  }
  
  .border-divider {
    border-color: rgba(0, 0, 0, 0.08); /* Используется из Tailwind темы */
  }
  
  .shadow-none {
    box-shadow: none;
  }
  
  /* Тело карточки */
  .p-12 {
    padding: 3rem;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* Иконка */
  .w-20 {
    width: 5rem;
  }
  
  .h-20 {
    height: 5rem;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .bg-primary-10 {
    background-color: #E0F2FE; /* Цвет из Tailwind темы */
  }
  
  .text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .text-primary {
    color: #0EA5E9; /* Цвет из Tailwind темы */
  }
  
  /* Заголовок */
  .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .font-light {
    font-weight: 300;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  /* Текст */
  .text-foreground-500 {
    color: #78716C; /* Цвет из Tailwind темы */
  }
  
  .mb-8 {
    margin-bottom: 2rem;
  }
  
  /* Ссылка */
  .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .text-foreground-400 {
    color: #A8A29E; /* Цвет из Tailwind темы */
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .button {
    display: inline-block;
    padding: 0.5rem 2rem;
    background-color: #0EA5E9; /* Цвет из Tailwind темы */
    color: #FFFFFF;
    text-align: center;
    border-radius: 0.375rem;
    text-decoration: none;
  }
  
  .button:hover {
    background-color: #0369A1; /* Цвет из Tailwind темы */
  }
  
  .px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }