/* IPabc Global Styles - Premium Pure CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* CSS Variables - Enhanced Color Palette */
:root {
    /* Primary Colors */
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-darker: #1e40af;
    --color-primary-light: #dbeafe;
    --color-primary-lighter: #eff6ff;
    
    /* Slate Colors */
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    
    /* Blue Colors */
    --color-blue-50: #eff6ff;
    --color-blue-100: #dbeafe;
    --color-blue-600: #2563eb;
    --color-blue-700: #1d4ed8;
    
    /* Red Colors */
    --color-red-500: #ef4444;
    
    /* Spacing Scale */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    
    /* Shadows - Enhanced Depth */
    --shadow-xs: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-slate-50);
    color: var(--color-slate-900);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Typography - Professional & Readable */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    color: var(--color-slate-900);
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.125rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--color-slate-700);
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

a:hover {
    color: var(--color-primary-dark);
}

strong, b {
    font-weight: 600;
    color: var(--color-slate-900);
}

em, i {
    font-style: italic;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

/* Header Styles - Sticky & Premium */
header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-slate-200);
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition-base);
}

header:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

/* Spacing Utilities */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Flexbox Utilities */
.flex {
    display: flex;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-col {
    flex-direction: column;
}

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

.items-start {
    align-items: flex-start;
}

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

.justify-between {
    justify-content: space-between;
}

/* Gap Utilities */
.gap-1 {
    gap: var(--spacing-1);
}

.gap-2 {
    gap: 10px;
}

.gap-3 {
    gap: var(--spacing-3);
}

.gap-4 {
    gap: var(--spacing-4);
}

.gap-6 {
    gap: var(--spacing-6);
}

.gap-8 {
    gap: var(--spacing-8);
}

/* Sizing Utilities */
.h-4 { height: 1rem; }
.h-5 { height:2rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }

.w-4 { width: 1rem; }
.w-5 { width: 2rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Z-Index Utilities */
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Position Utilities */
.sticky { position: sticky; }
.top-0 { top: 0; }
.fixed { position: fixed; }
.right-4 { right: 1rem; }
.right-5 { right: 1.25rem; }
.bottom-4 { bottom: 1rem; }
.bottom-5 { bottom: 1.25rem; }
.bottom-16 { bottom: 4rem; }

/* Border Utilities */
.border { border: 1px solid var(--color-slate-200); }
.border-b { border-bottom: 1px solid var(--color-slate-200); }
.border-l { border-left: 1px solid var(--color-slate-200); }
.border-t { border-top: 1px solid var(--color-slate-200); }

/* Border Radius Utilities */
.rounded-full { border-radius: 9999px; }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-50 { border-radius: 50%; }

/* Background Colors */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: var(--color-slate-50); }
.bg-slate-100 { background-color: var(--color-slate-100); }
.bg-blue-50 { background-color: var(--color-blue-50); }
.bg-blue-100 { background-color: var(--color-blue-100); }
.bg-blue-600 { background-color: var(--color-blue-600); }

/* Text Colors */
.text-slate-500 { color: var(--color-slate-500); }
.text-slate-600 { color: var(--color-slate-600); }
.text-slate-700 { color: var(--color-slate-700); }
.text-slate-800 { color: var(--color-slate-800); }
.text-slate-900 { color: var(--color-slate-900); }
.text-blue-600 { color: var(--color-primary); }
.text-blue-700 { color: var(--color-blue-700); }
.text-red-500 { color: var(--color-red-500); }
.text-white { color: #ffffff; }

/* Font Weight Utilities */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-mono { font-family: 'Courier New', monospace; }

/* Font Size Utilities */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl {display: flex;gap: 5px;font-size: 1.5rem;line-height: 2.25rem;align-items: center;}
.text-3xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 3.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 4.5rem; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Text Utilities */
.text-break { word-break: break-all; }
.break-all { word-break: break-all; }
.uppercase { text-transform: uppercase; }

/* Shadow Utilities */
.shadow-xs { box-shadow: var(--shadow-xs); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Padding Utilities */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

.pt-6 { padding-top: 1.5rem; }
.pb-4 { padding-bottom: 1rem; }

/* Margin Utilities */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-16 { margin-top: 0rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Width Utilities */
.max-w-2xl { max-width: 60rem; }
.w-full { width: 100%; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }

/* Transition Utilities */
.transition-all { transition: all var(--transition-base); }
.transition-colors { transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base); }

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    text-decoration: none;
    color: var(--color-slate-900);
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Navigation - Enhanced Interactivity */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    gap:0rem;
}

.lang-switcher-mobile {
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
    color: var(--color-slate-600);
    font-size: 0.975rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-lg);
}

.lang-switcher-mobile:hover {
    color: var(--color-primary);
    background-color: var(--color-primary-lighter);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
    color: var(--color-slate-600);
    position: relative;
    transition: color var(--transition-base);
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.nav-link:hover .nav-icon {
    transform: translateY(-2px);
}

.lang-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    padding-left: 2rem;
    border-left: 1px solid var(--color-slate-200);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-600);
    cursor: pointer;
    transition: all var(--transition-base);
}

.lang-switcher:hover {
    color: var(--color-primary);
}

/* Mobile Menu */
#mobile-menu {
    display: none;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-slate-200);
    animation: slideDown var(--transition-base) ease-out;
}

#mobile-menu.active {
    display: block;
}

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

.mobile-menu-content {
    padding: 0.75rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-slate-700);
    text-decoration: none;
    transition: all var(--transition-base);
}

.mobile-menu-link:hover {
    background-color: var(--color-slate-50);
    color: var(--color-primary);
    padding-left: 1rem;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-slate-600);
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    transition: all var(--transition-base);
}

#menu-toggle:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

#menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Main Content */
main {
    padding: 2rem 1rem;
}

main.py-8 {
    padding-top: 2rem;
    padding-bottom: 0rem;
}

/* Sections & Articles - Premium Cards */
section, article {
    background-color: #ffffff;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-slate-200);
    margin-bottom: 2rem;
    padding: 0;
    transition: all var(--transition-base);
}

section:hover, article:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-slate-300);
}

section > h1,
section > h2,
article > h1,
article > h2 {
    margin-bottom: 1.5rem;
}

/* Map Container */
.map-container {
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: 1.25rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-slate-200);
    transition: box-shadow var(--transition-base);
}

.map-container:hover {
    box-shadow: var(--shadow-lg);
}

/* Forms - Modern Input Styling */
.relative {
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="search"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-base);
    background-color: #ffffff;
    color: var(--color-slate-900);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="search"]::placeholder {
    color: var(--color-slate-400);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: var(--color-primary-lighter);
}

/* Buttons - Premium Interactive */
button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--transition-base);
}

.btn-primary:hover .btn-icon {
    transform: translateX(2px);
}

/* Grid Layouts */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Detail Items */
.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-slate-100);
    transition: background-color var(--transition-base);
}

.detail-item:hover {
    background-color: var(--color-slate-50);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--color-slate-500);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-weight: 500;
    color: var(--color-slate-900);
    font-size: 0.875rem;
    word-break: break-all;
    text-align: right;
}

/* Header Section */
.header-section {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-slate-200);
    background: linear-gradient(135deg, var(--color-slate-50) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    font-weight: 700;
}

.header-section-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
    flex-shrink: 0;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.header-section-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    background-color: var(--color-blue-100);
    color: #1e40af;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

/* Scroll Buttons - Floating Action */
#scroll-buttons {
    position: fixed;
    right: 1.25rem;
    bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    z-index: 50;
}

.scroll-btn {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    padding: 0;
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.scroll-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-slate-600);
    transition: color var(--transition-base);
}

.scroll-btn:hover .scroll-icon {
    color: #ffffff;
}

/* Footer */
footer {
    background-color: #ffffff;
    border-top: 1px solid var(--color-slate-200);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-w-42rem;
    margin: 0 auto;
    text-align: center;
    color: var(--color-slate-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* SEO Content Section - Enhanced Typography */
.seo-content {
    color: var(--color-slate-700);
    line-height: 1.8;
    padding: 0!important;
}

.seo-content h2 {
    padding: 1rem 1.5rem;
    border-radius: 1rem 1rem 0 0;
    background-color: var(--color-slate-100);
}

.seo-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
    padding: 0 1.5rem;
}

.seo-content p:first-child {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-slate-800);
}

.seo-content strong {
    color: var(--color-slate-900);
    font-weight: 600;
}

.seo-content h3 {
    padding: 0 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-slate-900);
}

.seo-content ul, .seo-content ol {
    margin-bottom: 1.25rem;
    padding: 0 1.5rem;
}

.seo-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-desktop {
        display: none;
    }

    #menu-toggle {
        display: block;
    }

    .lang-switcher {
        padding-left: 0;
        border-left: none;
    }

    main {
        padding: 1.5rem 1rem;
    }

    section, article {
        margin-bottom: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .grid-2col {
        grid-template-columns: 1fr;
    }

    .detail-item {
        gap: var(--spacing-1);
        padding: 0.5rem 0;
    }

    .detail-label {
        margin-bottom: 0.25rem;
        min-width: 50px;
    }

    .detail-value {
        text-align: left;
    }

    .header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-2);
        padding: 1.25rem 1.5rem;
    }

    .header-section-badge {
        align-self: flex-start;
    }

    #scroll-buttons {
        right: 1rem;
        bottom: 2rem;
    }

    .scroll-btn {
        width: 2.5rem;
        height: 2.5rem;
    }

    .scroll-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="search"] {
        padding: 0.75rem 1rem;
        font-size: 16px;
    }

    button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .flex-col {
        flex-direction: column;
    }

    .flex-col input {
        width: 100%;
    }

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

.btn-primary {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    font-weight: 500;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
    border-radius: 0.75rem;
    white-space: nowrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

    .seo-content {
        line-height: 1.75;
    }

    .seo-content p {
        word-break: break-all;
        text-align: left;
    }
}

@media (min-width: 640px) {
    .grid-2col {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

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

    .sm\:p-8 {
        padding: 2rem;
    }

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

    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 769px) {
    #mobile-menu {
        display: none !important;
    }

    #menu-toggle {
        display: none !important;
    }

    main {
        padding: 2rem 1.5rem;
    }

    section, article {
        padding: 0rem;
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .nav-mobile-header {
    display: none;
    }
    .btn-primary {
    width: 125px;
}
}

/* Print Styles */
@media print {
    header, footer, #scroll-buttons {
        display: none;
    }

    body {
        background-color: white;
    }

    section, article {
        box-shadow: none;
        page-break-inside: avoid;
        border: 1px solid var(--color-slate-200);
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Can be extended for dark mode support */
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
    body {
        font-weight: 500;
    }

    a {
        text-decoration: underline;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
