/* Welcome Page Styles */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Additional styling to ensure proper display */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

/* Main content specific styles - avoid global overrides */
.hero-section .hidden {
    display: none !important;
}

.hero-section .flex {
    display: flex !important;
}

.hero-section .items-center {
    align-items: center !important;
}

.hero-section .space-y-4 > * + * {
    margin-top: 1rem !important;
}

.hero-section .bg-white {
    background-color: white !important;
}

.hero-section .text-white {
    color: white !important;
}

.hero-section .rounded-lg {
    border-radius: 0.5rem !important;
}

.hero-section .rounded-2xl {
    border-radius: 1rem !important;
}

.hero-section .shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.hero-section .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.hero-section .py-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.hero-section .p-8 {
    padding: 2rem !important;
}

.hero-section .mb-6 {
    margin-bottom: 1.5rem !important;
}

.hero-section .mt-6 {
    margin-top: 1.5rem !important;
}

.hero-section .border {
    border-width: 1px !important;
}

.hero-section .border-gray-300 {
    border-color: #d1d5db !important;
}

.hero-section .focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

.hero-section .focus\:border-transparent:focus {
    border-color: transparent !important;
}

.hero-section .hover\:bg-blue-700:hover {
    background-color: #1d4ed8 !important;
}

.hero-section .transition {
    transition: all 0.15s ease-in-out !important;
}

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

.bg-gray-50 {
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.text-white {
    color: white;
}

.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);
}

.p-8 {
    padding: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

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

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.opacity-90 {
    opacity: 0.9;
}

.bg-white {
    background-color: white;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

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

.flex {
    display: flex;
}

.w-full {
    width: 100%;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.rounded-md {
    border-radius: 0.375rem;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:border-blue-500:focus {
    border-color: #3b82f6;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

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

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-gray-600 {
    color: #4b5563;
}

.text-blue-600 {
    color: #2563eb;
}

.hover\:text-blue-800:hover {
    color: #1e40af;
}

.underline {
    text-decoration: underline;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-gray-700 {
    color: #374151;
}

.mt-12 {
    margin-top: 3rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-gray-800 {
    color: #1f2937;
}

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