* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Utility Classes */
.min-h-screen { min-height: 100vh; }
.relative { position: relative; }
.absolute { position: absolute; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-8 { gap: 2rem; }
.p-6 { padding: 1.5rem; }
.pt-16 { padding-top: 4rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.left-4 { left: 1rem; }
.w-full { width: 100%; }
.max-w-4xl { max-width: 56rem; }
.max-w-2xl { max-width: 42rem; }
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Transition Classes */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Theme Gradients - Matched to Tailwind's from-{color}-50 to-white */
.theme-blue {
    background: linear-gradient(180deg, rgb(239 246 255) 0%, rgb(255 255 255) 100%);
}
.theme-purple {
    background: linear-gradient(180deg, rgb(245 243 255) 0%, rgb(255 255 255) 100%);
}
.theme-green {
    background: linear-gradient(180deg, rgb(240 253 244) 0%, rgb(255 255 255) 100%);
}
.theme-orange {
    background: linear-gradient(180deg, rgb(255 247 237) 0%, rgb(255 255 255) 100%);
}
.theme-rose {
    background: linear-gradient(180deg, rgb(255 241 242) 0%, rgb(255 255 255) 100%);
}

/* Button Base Styles - Matches shadcn/ui Button component */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 1rem;
    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;
    cursor: pointer;
    border: 1px solid transparent;
}

/* Button Variants */
.button-outline {
    background-color: transparent;
    border: 1px solid rgb(226, 232, 240);
    color: rgb(15, 23, 42);
}

.button-outline:hover {
    background-color: rgb(248, 250, 252);
    border-color: rgb(203, 213, 225);
}

.button-large {
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Card Styles - Matches shadcn/ui Card component */
.card {
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid rgb(226, 232, 240);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.card-header {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 0;
}

.card-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.card-content {
    padding: 1.5rem;
}

.card-content ul {
    color: rgb(51, 65, 85);
}

/* Theme-specific styles - Exact color matches */
.theme-blue .button-primary {
    background-color: rgb(37, 99, 235);
    color: white;
}
.theme-blue .button-primary:hover {
    background-color: rgb(29, 78, 216);
}
.theme-blue .title {
    color: rgb(30, 58, 138);
}
.fcontent{
    font-size: 14px;
  } 
@media (max-width: 992px) {
    .fcontent{
        font-size: 9px;
    }
    /* @media (max-width: 768px) {
        footer .fcontent {
            display: block;
            text-align: center;
            margin-bottom: 10px;
        }
    } */
/* Focus States - Matches shadcn/ui focus ring */
.button:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}}