/* Базовые утилиты, заменяющие tailwind-классы на локальные стили */

body {
    margin: 0;
    padding: 0;
}

.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.w-full {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-white { background-color: #ffffff; }

.text-gray-900 { color: #111827; }
.text-gray-800 { color: #1f2937; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-red-600 { color: #dc2626; }
.text-blue-600 { color: #2563eb; }
.hover\:text-blue-800:hover { color: #1e40af; }

.text-center { text-align: center; }
.underline { text-decoration: underline; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

.leading-relaxed { line-height: 1.625; }

.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.pt-4 { padding-top: 1rem; }
.m-4 { margin: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.rounded-md { border-radius: 0.375rem; }
.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);
}

.border { border: 1px solid #d1d5db; }
.border-t { border-top: 1px solid #d1d5db; }
.border-gray-200 { border-color: #e5e7eb; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

.bg-white .list-disc { padding-left: 0; }

.process-step {
    padding: 1rem;
    border-left: 4px solid #3b82f6;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info div {
    margin-bottom: 15px;
}

.main-wrap {
    position: relative;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

@media (min-width: 640px) {
    .sm\:p-12 { padding: 3rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}
