/* Privacy Policy Page Styles - Tailwind-like classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-gradient-to-b {
    background: linear-gradient(to bottom, var(--background), rgba(var(--secondary), 0.2));
}

.from-background {
    --background: #ffffff;
}

.to-secondary\/20 {
    --secondary: 59, 130, 246;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-md {
    border-radius: 0.375rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.ring-offset-background {
    --ring-offset-color: #ffffff;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:ring-2:focus-visible {
    --ring-offset-shadow: var(--ring-inset) 0 0 0 var(--ring-offset-width) var(--ring-offset-color);
    --ring-shadow: var(--ring-inset) 0 0 0 calc(2px + var(--ring-offset-width)) var(--ring-color);
    box-shadow: var(--ring-offset-shadow), var(--ring-shadow), var(--shadow, 0 0 #0000);
}

.focus-visible\:ring-ring:focus-visible {
    --ring-color: #3b82f6;
}

.focus-visible\:ring-offset-2:focus-visible {
    --ring-offset-width: 2px;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.h-10 {
    height: 2.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.hover\:bg-accent:hover {
    background-color: #f1f5f9;
}

.hover\:text-accent-foreground:hover {
    color: #0f172a;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
    border-color: #e2e8f0;
}

.bg-card {
    background-color: #ffffff;
}

.text-card-foreground {
    color: #0f172a;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.max-w-4xl {
    max-width: 56rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.375rem;
}

.p-6 {
    padding: 1.5rem;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-muted-foreground {
    color: #64748b;
}

.pt-0 {
    padding-top: 0;
}

.prose {
    color: #374151;
    max-width: 65ch;
}

.max-w-none {
    max-width: none;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1rem;
}

.list-disc {
    list-style-type: disc;
}

.ml-6 {
    margin-left: 1.5rem;
}

.grid {
    display: grid;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.bg-secondary\/50 {
    background-color: rgba(59, 130, 246, 0.5);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.border-input {
    border-color: #e2e8f0;
}

.bg-background {
    background-color: #ffffff;
}

/* Additional missing classes */
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.375rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.lucide {
    display: inline-block;
    vertical-align: middle;
}

.lucide-arrow-left {
    display: inline-block;
    vertical-align: middle;
}

/* Additional missing classes for the contact section */
.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

/* Button hover states */
.hover\:bg-accent:hover {
    background-color: #f1f5f9;
}

.hover\:text-accent-foreground:hover {
    color: #0f172a;
}

/* Additional classes for Children page */
.to-muted\/10 {
    background: linear-gradient(to bottom, var(--background), rgba(var(--muted), 0.1));
}

.pb-20 {
    padding-bottom: 5rem;
}

.max-w-md {
    max-width: 28rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.p-4 {
    padding: 1rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.space-x-3 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0.75rem;
}

.h-9 {
    height: 2.25rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.bg-primary {
    background-color: #3b82f6;
}

.text-primary-foreground {
    color: #ffffff;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(59, 130, 246, 0.9);
}

.h-10 {
    height: 2.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.font-bold {
    font-weight: 700;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-medium {
    font-weight: 500;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.bg-muted {
    background-color: #f1f5f9;
}

.rounded-full {
    border-radius: 9999px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.text-muted-foreground {
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
