* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAF8;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
    transition: all 0.3s ease;
}

a {
    transition: all 0.3s ease;
}

.shadow-sm {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.shadow-lg {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.rounded-xl {
    border-radius: 12px;
}

.rounded-2xl {
    border-radius: 16px;
}

.hidden {
    display: none !important;
}

input, textarea {
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
}

header {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

section {
    scroll-margin-top: 80px;
}

.faq-content {
    animation: slideDown 0.3s ease;
}

.faq-content.hidden {
    animation: slideUp 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:block {
        display: block !important;
    }

    .md\:hidden {
        display: none !important;
    }

    .md\:flex {
        display: flex !important;
    }

    .md\:scale-105 {
        transform: scale(1.05);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.py-24 { padding: 6rem 0; }
.py-32 { padding: 8rem 0; }
.py-12 { padding: 3rem 0; }
.py-6 { padding: 1.5rem 0; }
.py-4 { padding: 1rem 0; }
.py-3 { padding: 0.75rem 0; }

.px-4 { padding: 0 1rem; }
.px-6 { padding: 0 1.5rem; }
.px-8 { padding: 0 2rem; }

.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-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

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

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

.text-white { color: white; }
.bg-white { background-color: white; }
.bg-yellow-400 { background-color: #fbbf24; }
.text-black { color: black; }
.text-red-700 { color: #b91c1c; }

.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-2 { border: 2px solid; }
.border-t-4 { border-top: 4px solid; }

.overflow-hidden { overflow: hidden; }

.w-full { width: 100%; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-72 { width: 18rem; }

.h-auto { height: auto; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }

.object-cover { object-fit: cover; }
.break-all { word-break: break-all; }
.opacity-10 { opacity: 0.1; }

.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) scale(var(--tw-scale-x), var(--tw-scale-y)); }
.-translate-x-1/2 { --tw-translate-x: -50%; }
.-translate-y-1/2 { --tw-translate-y: -50%; }

.sticky { position: sticky; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }

.top-0 { top: 0; }
.top-32 { top: 8rem; }
.right-6 { right: 1.5rem; }

.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.transition { transition: all 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.sm\:flex-row {
    flex-direction: row;
}

@media (max-width: 639px) {
    .sm\:flex-row {
        flex-direction: column;
    }
}
