/* Custom CSS for Distinguished Dentists of America Theme */

/* Header and Navigation Styles */
.site-header {
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Navigation Link Styles */
.desktop-menu a {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px; /* Ensure consistent height */
    line-height: 1.2;
}

.desktop-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.desktop-menu a:hover::before {
    left: 100%;
}

/* Active Navigation State */
.desktop-menu a.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.desktop-menu a.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Navigation Container Alignment */
.desktop-menu ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.desktop-menu li {
    display: flex;
    align-items: center;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    animation: slideDown 0.3s ease-out;
}

.mobile-menu.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Item Active States */
.desktop-menu a.active,
.mobile-menu a.active {
    background: linear-gradient(to right, #1e3a8a, #1d4ed8);
    color: white;
    border-radius: 0.75rem;
    padding: 0.625rem 1.25rem;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    cursor: pointer;
    padding: 1.5rem 0;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s ease;
}

.faq-question:hover,
.faq-question.active {
    color: #1d4ed8;
}

.faq-question::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Contact Form Styles */
.contact-form input,
.contact-form textarea {
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.contact-form input.border-red-500,
.contact-form textarea.border-red-500 {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Dentist Card Hover Effects */
.dentist-card {
    transition: all 0.3s ease;
}

.dentist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Star Rating Styles */
.star-rating {
    display: inline-flex;
    gap: 2px;
}

.star-rating .star {
    color: #d1d5db;
    transition: color 0.2s ease;
}

.star-rating .star.filled {
    color: #fbbf24;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 50;
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Responsive Typography */
@media (max-width: 640px) {
    .text-responsive-xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .text-responsive-2xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .text-responsive-3xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

@media (min-width: 641px) {
    .text-responsive-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .text-responsive-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .text-responsive-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .page-break {
        page-break-before: always;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .bg-gradient-to-r {
        background: #000 !important;
        color: #fff !important;
    }
    
    .text-slate-600 {
        color: #000 !important;
    }
    
    .border-slate-200 {
        border-color: #000 !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #0f172a;
        --foreground: #f8fafc;
        --card: #1e293b;
        --card-foreground: #f8fafc;
        --border: #334155;
    }
}

/* Custom Utilities */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-lg {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.backdrop-blur-custom {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Reset any WordPress default padding */
body {
    padding: 0 !important;
    margin: 0 !important;
}

/* Complete Home Page Styles - No Tailwind Dependency */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, #020617, #1e3a8a, #0f172a);
}

.hero-background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.hero-background-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1), transparent 50%);
}

.hero-background-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMTAwIDAgTCAwIDAgMCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 1rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-inner {
    max-width: 64rem;
    text-align: center;
}

.hero-text {
    color: white;
    text-align: center;
}

.neab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(250, 204, 21, 0.2), rgba(217, 119, 6, 0.2));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.neab-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
}

.neab-badge span {
    color: #fef3c7;
    letter-spacing: 0.025em;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title-america {
    display: block;
    background: linear-gradient(to right, #facc15, #fde047, #eab308);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: serif;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #dbeafe;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(191, 219, 254, 0.8);
    margin-bottom: 3rem;
    max-width: 48rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-description .highlight {
    color: #facc15;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Stats Section */
.stats-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    background-color: white;
    position: relative;
}

.stats-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .stats-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stats-container {
        padding: 0 2rem;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    position: relative;
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-0.5rem);
}

.stat-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a);
    border-radius: 1.5rem;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-card-bg {
    transform: scale(1.05);
}

.stat-card-content {
    position: relative;
    background: linear-gradient(to bottom right, #020617, #1e3a8a);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(250, 204, 21, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    color: #facc15;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3.75rem;
    color: white;
    margin-bottom: 0.75rem;
}

.stat-suffix {
    color: #facc15;
}

.stat-label {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: rgba(191, 219, 254, 0.7);
    font-size: 0.875rem;
}

/* What It Means Section */
.what-it-means-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(to bottom right, #f8fafc, white, #eff6ff);
    position: relative;
    overflow: hidden;
}

.what-it-means-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom left, rgba(59, 130, 246, 0.1), transparent);
}

.what-it-means-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.what-it-means-header {
    text-align: center;
    margin-bottom: 4rem;
}

.distinction-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.distinction-badge svg {
    width: 1rem;
    height: 1rem;
    color: #374151;
}

.distinction-badge span {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.what-it-means-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.what-it-means-title .elite {
    font-size: 3.5rem;
    color: #3b82f6;
    font-family: serif;
    font-style: italic;
    font-weight: 400;
}

.what-it-means-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.what-it-means-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.criteria-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.criteria-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.criteria-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.criteria-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.criteria-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.criteria-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.criteria-icon.yellow {
    background: #f59e0b;
}

.criteria-icon.green {
    background: #10b981;
}

.criteria-icon.blue {
    background: #3b82f6;
}

.criteria-icon.purple {
    background: #8b5cf6;
}

.criteria-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.criteria-text p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.neab-card {
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.neab-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.neab-card-content {
    position: relative;
    z-index: 10;
}

.neab-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.neab-card h3 .neab-highlight {
    color: #facc15;
}

.neab-card p {
    color: white;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.neab-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.neab-button {
    background: #facc15;
    color: #0f172a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.neab-button:hover {
    background: #eab308;
}

@media (max-width: 768px) {
    .what-it-means-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .what-it-means-title {
        font-size: 2.5rem;
    }
    
    .what-it-means-title .elite {
        font-size: 3rem;
    }
}

/* Trust Recognition Section */
.trust-recognition-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(to bottom right, #f8fafc, white, #eff6ff);
    position: relative;
    overflow: hidden;
}

.trust-recognition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), transparent);
}

.trust-recognition-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.trust-recognition-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.trust-badge svg {
    width: 1rem;
    height: 1rem;
    color: #374151;
}

.trust-badge span {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-recognition-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.trust-recognition-title .recognition-highlight {
    font-size: 3.5rem;
    color: #3b82f6;
    font-family: serif;
    font-style: italic;
    font-weight: 400;
}

.trust-recognition-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.trust-recognition-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.trust-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-point-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f1f5f9;
}

.trust-point-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.trust-point-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-point-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-point-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.trust-point-icon.trusted-care {
    background: #f59e0b;
}

.trust-point-icon.commitment {
    background: #10b981;
}

.trust-point-icon.independent {
    background: #8b5cf6;
}

.trust-point-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.trust-point-text p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.trust-conclusion-card {
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.trust-conclusion-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trust-conclusion-content {
    position: relative;
    z-index: 10;
}

.trust-conclusion-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.trust-conclusion-content p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .trust-recognition-title {
        font-size: 2.5rem;
    }
    
    .trust-recognition-title .recognition-highlight {
        font-size: 3rem;
    }
    
    .trust-points-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonial Quote Section */
.testimonial-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.05), transparent 50%);
    pointer-events: none;
}

.testimonial-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.testimonial-star {
    width: 1.5rem;
    height: 1.5rem;
    color: #f59e0b;
}

.testimonial-quote {
    font-size: 3rem;
    font-weight: 400;
    font-family: serif;
    font-style: italic;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-quote .elite-highlight {
    color: #3b82f6;
}

.testimonial-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 40rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 2rem;
    }
    
    .testimonial-description {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(to bottom right, #020617, #1e3a8a, #0f172a);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 3.5rem;
    font-weight: 700;
    color: #facc15;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 3rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(to right, #facc15, #eab308);
    color: #0f172a;
    padding: 1.25rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fde047, #facc15);
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button svg {
    position: relative;
    z-index: 2;
    width: 1.25rem;
    height: 1.25rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 3rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
}

/* For Dentists Section */
.for-dentists-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(to bottom right, #f8fafc, white, #eff6ff);
    position: relative;
    overflow: hidden;
}

.for-dentists-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to bottom left, rgba(59, 130, 246, 0.1), transparent);
}

.for-dentists-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.for-dentists-header {
    text-align: center;
    margin-bottom: 4rem;
}

.for-dentists-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.for-dentists-badge svg {
    width: 1rem;
    height: 1rem;
    color: #374151;
}

.for-dentists-badge span {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.for-dentists-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.for-dentists-title .dentists-highlight {
    font-size: 3.5rem;
    color: #3b82f6;
    font-family: serif;
    font-style: italic;
    font-weight: 400;
}

.for-dentists-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

.for-dentists-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.dentist-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .dentist-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dentist-benefit-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f1f5f9;
}

.dentist-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.dentist-benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.dentist-benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dentist-benefit-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.dentist-benefit-icon.award {
    background: #f59e0b;
}

.dentist-benefit-icon.badge {
    background: #10b981;
}

.dentist-benefit-icon.listing {
    background: #8b5cf6;
}

.dentist-benefit-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .for-dentists-title {
        font-size: 2.5rem;
    }
    
    .for-dentists-title .dentists-highlight {
        font-size: 3rem;
    }
    
    .dentist-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* For Dentists Digital Section - Badge Row */
.for-dentists-digital-section {
    margin-top: 80px;
    text-align: center;
}

.for-dentists-digital-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.for-dentists-digital-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 20px;
}

.badge-row-container {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: badgeRowFadeIn 1.2s ease-out;
}

.badge-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    animation: badgeItemSlideIn 0.8s ease-out;
    animation-fill-mode: both;
}

.badge-item:nth-child(1) { animation-delay: 0.1s; }
.badge-item:nth-child(2) { animation-delay: 0.2s; }
.badge-item:nth-child(3) { animation-delay: 0.3s; }
.badge-item:nth-child(4) { animation-delay: 0.4s; }
.badge-item:nth-child(5) { animation-delay: 0.5s; }
.badge-item:nth-child(6) { animation-delay: 0.6s; }

.badge-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15), 0 8px 12px -4px rgba(0, 0, 0, 0.1);
}

.badge-image-protected {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.badge-item:hover .badge-image-protected {
    transform: scale(1.1);
}

/* Protection overlay */
.protected-badge {
    position: relative;
}

.protected-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 3;
    pointer-events: auto;
}

/* Animations */
@keyframes badgeRowFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeItemSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .for-dentists-digital-section {
        margin-top: 60px;
    }
    
    .for-dentists-digital-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
    
    .for-dentists-digital-badges {
        padding: 0 16px;
    }
    
    .badge-row-container {
        gap: 16px;
    }
    
    .badge-item {
        width: 100px;
        height: 100px;
        border-radius: 16px;
    }
    
    .badge-image-protected {
        max-width: 65px;
        max-height: 65px;
    }
}

@media (max-width: 480px) {
    .badge-row-container {
        gap: 12px;
    }
    
    .badge-item {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }
    
    .badge-image-protected {
        max-width: 50px;
        max-height: 50px;
    }
}
.faq-snapshot-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
    position: relative;
    overflow: hidden;
}

.faq-snapshot-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.05), transparent 50%);
    pointer-events: none;
}

.faq-snapshot-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.faq-snapshot-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-snapshot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-snapshot-badge svg {
    width: 1rem;
    height: 1rem;
    color: #374151;
}

.faq-snapshot-badge span {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-snapshot-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.faq-snapshot-title .snapshot-highlight {
    font-size: 3.5rem;
    color: #3b82f6;
    font-family: serif;
    font-style: italic;
    font-weight: 400;
}

.faq-snapshot-content {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-snapshot-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-snapshot-accordion-item {
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-snapshot-accordion-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-snapshot-accordion-trigger {
    cursor: pointer;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.faq-snapshot-accordion-trigger:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.faq-snapshot-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-snapshot-accordion-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-snapshot-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-snapshot-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-snapshot-answer-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-snapshot-title {
        font-size: 2.5rem;
    }
    
    .faq-snapshot-title .snapshot-highlight {
        font-size: 3rem;
    }
    
    .faq-snapshot-question-text {
        font-size: 1rem;
    }
    
    .faq-snapshot-answer-text {
        font-size: 0.875rem;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(to bottom right, #020617, #1e3a8a, #0f172a);
    padding-top: 4rem;
    padding-bottom: 2rem;
    padding-left:4rem!important;
    padding-right:4rem!important;
}

.footer-container {
    width: 100%;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    width: 19rem;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: white;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid #facc15;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(250, 204, 21, 0.1);
}

.footer-badge svg {
    width: 1rem;
    height: 1rem;
    color: #facc15;
}

.footer-badge span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column h3 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #facc15;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: white;
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-cta-button {
    background: #facc15;
    color: #0f172a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.footer-cta-button:hover {
    background: #eab308;
}

.footer-cta-button svg {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Hero Button Styles - Direct CSS */
.hero-buttons .find-button {
    background: linear-gradient(to right, #facc15, #eab308) !important;
    color: #0f172a !important;
    padding: 1.25rem 2rem !important;
    border-radius: 0.75rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    box-shadow: 0 25px 50px -12px rgba(234, 179, 8, 0.25) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-buttons .find-button:hover {
    transform: scale(1.05) !important;
}

.hero-buttons .find-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fde047, #facc15);
    transition: left 0.5s ease;
    z-index: 1;
}

.hero-buttons .find-button:hover::before {
    left: 0;
}

.hero-buttons .find-button span {
    position: relative;
    z-index: 2;
}

.hero-buttons .why-button {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    padding: 1.25rem 2rem !important;
    border-radius: 0.75rem !important;
    text-decoration: none !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(4px) !important;
}

.hero-buttons .why-button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05) !important;
}

/* Find Dentist Introduction Section */
.find-professional-intro-section {
    padding: 60px 0;
    background: white;
}

.find-professional-intro-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
}

.find-professional-intro-content {
    text-align: center;
}

.find-professional-intro-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    margin-bottom: 24px;
}

.find-professional-intro-text:last-child {
    margin-bottom: 0;
}

.find-professional-criteria-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.find-professional-criteria-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.find-professional-criteria-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.find-professional-criteria-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
}

.find-professional-criteria-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

.find-professional-intro-highlight {
    font-weight: 600;
    color: #0f172a;
    font-size: 1.25rem;
    margin-top: 32px;
}

@media (max-width: 1024px) {
    .find-professional-criteria-boxes {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }
}

@media (max-width: 768px) {
    .find-professional-intro-section {
        padding: 40px 0;
    }
    
    .find-professional-intro-text {
        font-size: 1rem;
    }
    
    .find-professional-criteria-boxes {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 0;
    }
    
    .find-professional-criteria-box {
        padding: 20px;
    }
    
    .find-professional-criteria-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    
    .find-professional-criteria-box p {
        font-size: 0.9rem;
    }
    
    .find-professional-intro-highlight {
        font-size: 1.125rem;
    }
}

/* Find Dentist Conclusion Section */
.find-professional-conclusion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.find-professional-conclusion-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}

.find-professional-conclusion-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 64px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.find-professional-conclusion-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8, #2563eb);
}

.find-professional-conclusion-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 32px;
    font-weight: 400;
}

.find-professional-conclusion-text:last-child {
    margin-bottom: 0;
}

.find-professional-conclusion-highlight {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.375rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .find-professional-conclusion-section {
        padding: 60px 0;
    }
    
    .find-professional-conclusion-box {
        padding: 48px 32px;
        border-radius: 20px;
    }
    
    .find-professional-conclusion-text {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }
    
    .find-professional-conclusion-highlight {
        font-size: 1.25rem;
    }
}

/* FAQ Page Styles - No Tailwind Dependency */

/* FAQ Page Container */
.faq-page {
    background-color: white;
}

/* FAQ Hero Section */
.faq-hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.faq-hero-background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==');
}

.faq-hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    z-index: 10;
}

@media (min-width: 640px) {
    .faq-hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-hero-content {
        padding: 0 2rem;
    }
}

.faq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.faq-hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.faq-hero-badge span {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.faq-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .faq-hero-title {
        font-size: 3.75rem;
    }
}

.faq-hero-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .faq-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* FAQ Content Section */
.faq-content-section {
    padding: 5rem 0;
    background-color: white;
}

.faq-content-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .faq-content-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-content-container {
        padding: 0 2rem;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-accordion-trigger {
    cursor: pointer;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.faq-accordion-trigger:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-accordion-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #6b7280;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Additional Section */
.faq-additional-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
}

.faq-additional-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .faq-additional-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-additional-container {
        padding: 0 2rem;
    }
}

.faq-additional-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.faq-additional-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faq-additional-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-additional-button-container {
    text-align: center;
}

.faq-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-contact-button:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2.5rem;
    }
    
    .faq-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-additional-title {
        font-size: 1.5rem;
    }
    
    .faq-additional-text {
        font-size: 1rem;
    }
    
    .faq-additional-card {
        padding: 2rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-text {
        font-size: 0.875rem;
    }
}

/* WordPress Specific Styles */
.wp-block-image {
    margin: 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Gutenberg Block Styles */
.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-columns {
    margin-bottom: 2rem;
}

.wp-block-button {
    margin-bottom: 1rem;
}

.wp-block-button__link {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.wp-block-button__link:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles - No Tailwind Dependency */

/* Contact Page Container */
.contact-page {
    background-color: white;
}

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.contact-hero-background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==');
}

.contact-hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    z-index: 10;
}

@media (min-width: 640px) {
    .contact-hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-hero-content {
        padding: 0 2rem;
    }
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .contact-hero-title {
        font-size: 3.75rem;
    }
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Contact Main Section */
.contact-main-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
}

.contact-main-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .contact-main-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-main-container {
        padding: 0 2rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
    }
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    transition: box-shadow 0.2s ease;
}

.contact-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-card-content {
    padding: 2rem;
}

.contact-icon-container {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon-blue {
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}

.contact-icon-yellow {
    background: linear-gradient(to bottom right, #eab308, #ca8a04);
}

.contact-icon-green {
    background: linear-gradient(to bottom right, #16a34a, #15803d);
}

.contact-icon-container svg {
    color: white;
}

.contact-icon-yellow svg {
    color: #0f172a;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-card-description {
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.contact-card-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.contact-card-link:hover {
    text-decoration: underline;
}

.contact-card-link-large {
    font-size: 1.125rem;
}

.contact-card-address {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Column */
.contact-form-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-form-content {
    padding: 2.5rem;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-form-description {
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.contact-form-label {
    display: block;
    margin-bottom: 0.75rem;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 3.5rem;
    background-color: #fafafa;
    box-sizing: border-box;
}

.contact-form-textarea {
    height: auto;
    resize: vertical;
    min-height: 8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    line-height: 1.6;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background-color: white;
    transform: translateY(-2px);
}

.contact-form-input:hover,
.contact-form-textarea:hover {
    border-color: #94a3b8;
    background-color: white;
}

.contact-form-button {
    width: 100%;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form-button:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

.contact-form-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Contact Additional Info */
.contact-additional-info {
    background: linear-gradient(to bottom right, #eff6ff, #e0e7ff);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #bfdbfe;
}

.contact-additional-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-additional-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-additional-hours p {
    color: #374151;
    margin: 0;
}

.contact-additional-bold {
    color: #1f2937;
    font-weight: 600;
}

.contact-additional-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .contact-form-content {
        padding: 1.5rem;
    }
    
    .contact-card-content {
        padding: 1.5rem;
    }
    
    .contact-additional-info {
        padding: 1.5rem;
    }
    
    /* Mobile form field adjustments */
    .contact-form-input,
    .contact-form-textarea,
    .find-professional-search-input,
    .find-professional-search-select {
        height: 3.25rem;
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form-textarea {
        min-height: 7rem;
    }
    
    .contact-form-label,
    .find-professional-search-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-field {
        margin-bottom: 1.25rem;
    }
}

/* Privacy Policy Page Styles - No Tailwind Dependency */

/* Privacy Policy Page Container */
.privacy-page {
    background-color: white;
}

/* Privacy Policy Hero Section */
.privacy-hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.privacy-hero-background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==');
}

.privacy-hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    z-index: 10;
}

@media (min-width: 640px) {
    .privacy-hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .privacy-hero-content {
        padding: 0 2rem;
    }
}

.privacy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(250, 204, 21, 0.2), rgba(217, 119, 6, 0.2));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.privacy-hero-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
}

.privacy-hero-badge span {
    color: #fef3c7;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.privacy-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .privacy-hero-title {
        font-size: 3.75rem;
    }
}

.privacy-hero-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .privacy-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Privacy Policy Content Section */
.privacy-content-section {
    padding: 5rem 0;
    background-color: white;
}

.privacy-content-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .privacy-content-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .privacy-content-container {
        padding: 0 2rem;
    }
}

.privacy-content-wrapper {
    max-width: none;
}

.privacy-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 500;
}

.privacy-policy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.privacy-section {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.privacy-section-content {
    color: #374151;
    line-height: 1.6;
}

.privacy-section-content p {
    margin-bottom: 1rem;
}

.privacy-section-content p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style-type: disc;
    list-style-position: inside;
    margin: 1rem 0;
    padding-left: 1rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
    color: #374151;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-contact-info {
    background: linear-gradient(to bottom right, #eff6ff, #e0e7ff);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #bfdbfe;
    margin-top: 1rem;
}

.privacy-contact-info p {
    margin-bottom: 0.5rem;
    color: #374151;
}

.privacy-contact-info p:last-child {
    margin-bottom: 0;
}

.privacy-contact-info strong {
    color: #1f2937;
}

/* Privacy Policy CTA Section */
.privacy-cta-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
}

.privacy-cta-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .privacy-cta-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .privacy-cta-container {
        padding: 0 2rem;
    }
}

.privacy-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .privacy-cta-title {
        font-size: 3rem;
    }
}

.privacy-cta-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.privacy-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.privacy-cta-button:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 32px 64px -12px rgba(37, 99, 235, 0.35);
}

.privacy-cta-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .privacy-section-title {
        font-size: 1.5rem;
    }
    
    .privacy-cta-title {
        font-size: 2rem;
    }
    
    .privacy-cta-subtitle {
        font-size: 1.125rem;
    }
    
    .privacy-cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }
}

/* Terms of Service Page Styles - No Tailwind Dependency */

/* Terms of Service Page Container */
.terms-page {
    background-color: white;
}

/* Terms of Service Hero Section */
.terms-hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #0f172a, #1e3a8a, #0f172a);
    color: white;
    padding: 5rem 0;
    overflow: hidden;
}

.terms-hero-background-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==');
}

.terms-hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    z-index: 10;
}

@media (min-width: 640px) {
    .terms-hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .terms-hero-content {
        padding: 0 2rem;
    }
}

.terms-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(250, 204, 21, 0.2), rgba(217, 119, 6, 0.2));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.terms-hero-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
}

.terms-hero-badge span {
    color: #fef3c7;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.terms-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .terms-hero-title {
        font-size: 3.75rem;
    }
}

.terms-hero-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .terms-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Terms of Service Content Section */
.terms-content-section {
    padding: 5rem 0;
    background-color: white;
}

.terms-content-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .terms-content-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .terms-content-container {
        padding: 0 2rem;
    }
}

.terms-content-wrapper {
    max-width: none;
}

.terms-intro {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 500;
}

.terms-policy-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.terms-section {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.terms-section-content {
    color: #374151;
    line-height: 1.6;
}

.terms-section-content p {
    margin: 0;
    font-size: 1rem;
}

/* Terms of Service CTA Section */
.terms-cta-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
}

.terms-cta-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .terms-cta-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .terms-cta-container {
        padding: 0 2rem;
    }
}

.terms-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .terms-cta-title {
        font-size: 3rem;
    }
}

.terms-cta-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.terms-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.terms-cta-button:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 32px 64px -12px rgba(37, 99, 235, 0.35);
}

.terms-cta-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-hero-title {
        font-size: 2.5rem;
    }
    
    .terms-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .terms-section-title {
        font-size: 1.5rem;
    }
    
    .terms-cta-title {
        font-size: 2rem;
    }
    
    .terms-cta-subtitle {
        font-size: 1.125rem;
    }
    
    .terms-cta-button {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }
}

/* Searchable Select Dropdown */
.searchable-select-container {
    position: relative;
    width: 100%;
}

.searchable-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.searchable-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.searchable-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.searchable-dropdown.show {
    display: block !important;
}

.searchable-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.searchable-option:last-child {
    border-bottom: none;
}

.searchable-option:hover {
    background-color: #f8fafc;
}

.searchable-option.selected {
    background-color: #2563eb;
    color: white;
}

.searchable-option.hidden {
    display: none !important;
}

/* Debug styles - remove after testing */
.searchable-dropdown {
    border: 2px solid red !important; /* Temporary debug border */
}

.searchable-dropdown.show {
    border: 2px solid green !important; /* Temporary debug border */
}

/* Find Professional Page Styles - No Tailwind Dependency */

/* Find Professional Page Container */
.find-professional-page {
    background-color: white;
}

/* Find Dentist Hero Section */
.find-professional-hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #020617, #1e3a8a, #0f172a);
    overflow: hidden;
}

.find-professional-hero-background-pattern {
    position: absolute;
    inset: 0;
}

.find-professional-hero-background-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1), transparent 70%);
}

.find-professional-hero-background-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMTAwIDAgTCAwIDAgMCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    opacity: 0.4;
}

.find-professional-hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1rem;
    text-align: center;
    width: 100%;
    margin-bottom: 30px!important;
}

@media (min-width: 640px) {
    .find-professional-hero-content {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .find-professional-hero-content {
        padding: 5rem 2rem;
    }
}

.find-professional-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(250, 204, 21, 0.2), rgba(217, 119, 6, 0.2));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.find-professional-hero-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
}

.find-professional-hero-badge span {
    color: #fef3c7;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.find-professional-hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .find-professional-hero-title {
        font-size: 4.5rem;
    }
}

.find-professional-hero-elite {
    background: linear-gradient(to right, #facc15, #fde047, #eab308);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: serif;
    font-style: italic;
}

.find-professional-hero-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .find-professional-hero-subtitle {
        font-size: 1.5rem;
    }
}

.find-professional-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, white, transparent);
}

/* Find Dentist Search Section */
.find-professional-search-section {
    position: relative;
    margin-top: -5rem;
    padding-bottom: 5rem;
}

.find-professional-search-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .find-professional-search-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .find-professional-search-container {
        padding: 0 2rem;
    }
}

.find-professional-search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
}

.find-professional-search-content {
    padding: 2rem;
}

@media (min-width: 1024px) {
    .find-professional-search-content {
        padding: 3rem;
    }
}

.find-professional-search-header {
    margin-bottom: 2rem;
}

.find-professional-search-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.find-professional-search-description {
    color: #6b7280;
}

.find-professional-search-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.find-professional-search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .find-professional-search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .find-professional-search-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.find-professional-search-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.find-professional-search-label {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.find-professional-search-input,
.find-professional-search-select {
    width: 100%;
    height: 3.5rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    background-color: #fafafa;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.find-professional-search-input:focus,
.find-professional-search-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background-color: white;
    transform: translateY(-2px);
}

.find-professional-search-input:hover,
.find-professional-search-select:hover {
    border-color: #94a3b8;
    background-color: white;
}

.find-professional-search-button {
    width: 100%;
    height: 3.5rem;
    background: linear-gradient(to right, #1e3a8a, #1d4ed8);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.find-professional-search-button:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-1px);
}

.find-professional-search-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Find Dentist Criteria Banner */
.find-professional-criteria-banner {
    margin-top: 3rem;
    background: linear-gradient(to bottom right, #020617, #1e3a8a);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.find-professional-criteria-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.find-professional-criteria-header svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #facc15;
}

.find-professional-criteria-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.find-professional-criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .find-professional-criteria-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.find-professional-criteria-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.find-professional-criteria-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
    flex-shrink: 0;
}

.find-professional-criteria-item span {
    color: #dbeafe;
}

/* Find Dentist Results Section */
.find-professional-results-section {
    padding: 5rem 0 8rem 0;
    background: linear-gradient(to bottom, white, #f8fafc, white);
}

.find-professional-results-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .find-professional-results-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .find-professional-results-container {
        padding: 0 2rem;
    }
}

.find-professional-results-header {
    margin-bottom: 3rem;
}

.find-professional-results-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.find-professional-results-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.find-professional-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .find-professional-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .find-professional-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Find Dentist Card */
.find-professional-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.find-professional-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.find-professional-card-badge {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.find-professional-premium-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.find-professional-premium-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
}

.find-professional-premium-badge span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.find-professional-card-content {
    padding: 1.5rem;
}

.find-professional-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.find-professional-card-info {
    flex: 1;
}

.find-professional-card-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.find-professional-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.find-professional-card-top-badge {
    padding: 0.25rem 0.5rem;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.375rem;
}

.find-professional-card-credentials {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.find-professional-card-practice-section {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.find-professional-card-practice {
    font-size: 1rem;
    color: #1e3a8a;
    font-weight: 600;
    margin: 0;
}

.find-professional-card-rating {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.find-professional-card-rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.find-professional-card-rating-stars svg {
    width: 1rem;
    height: 1rem;
    color: #facc15;
}

.find-professional-card-rating-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.125rem;
}

.find-professional-card-reviews {
    font-size: 0.75rem;
    color: #6b7280;
}

.find-professional-card-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.find-professional-card-specialty {
    padding: 0.375rem 0.75rem;
    background: #f8fafc;
    color: #475569;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-size: 0.75rem;
    font-weight: 500;
}

.find-professional-card-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.find-professional-card-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.find-professional-card-contact-item svg {
    width: 1rem;
    height: 1rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.find-professional-card-button {
    width: 100%;
    background: #1e3a8a;
    color: white;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.find-professional-card-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Loading and No Results */
.find-professional-loading {
    text-align: center;
    padding: 3rem 0;
}

.find-professional-loading-content {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
}

.find-professional-loading-spinner {
    width: 1.5rem;
    height: 1.5rem;
    animation: spin 1s linear infinite;
}

.find-professional-loading-circle {
    opacity: 0.25;
}

.find-professional-loading-path {
    opacity: 0.75;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.find-professional-no-results {
    text-align: center;
    padding: 3rem 0;
}

.find-professional-no-results-content {
    color: #6b7280;
}

.find-professional-no-results-content svg {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #9ca3af;
}

.find-professional-no-results-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.find-professional-no-results-text {
    color: #6b7280;
}

/* Pagination Styles */
.find-professional-pagination-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.find-professional-pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.find-professional-pagination-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    background: white;
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    justify-content: center;
}

.find-professional-pagination-button:hover:not(:disabled) {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
    transform: translateY(-1px);
}

.find-professional-pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9fafb;
    color: #9ca3af;
}

.find-professional-pagination-button:disabled:hover {
    transform: none;
    border-color: #e2e8f0;
    background: #f9fafb;
    color: #9ca3af;
}

.find-professional-pagination-pages {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.find-professional-page-info {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .find-professional-pagination {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .find-professional-pagination-button {
        width: 100%;
        min-width: auto;
    }
    
    .find-professional-pagination-pages {
        padding: 0;
    }
}

/* WordPress Admin - Cities Management Page Fix */
/* Now using standard WordPress taxonomy interface - no custom CSS needed */

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .find-professional-hero-title {
        font-size: 2.5rem;
    }
    
    .find-professional-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .find-professional-search-title {
        font-size: 1.5rem;
    }
    
    .find-professional-results-title {
        font-size: 2rem;
    }
    
    .find-professional-card-name {
        font-size: 1.5rem;
    }
    
    .find-professional-card-practice {
        font-size: 1.125rem;
    }
}

/* Header Navigation Styles - No Tailwind Dependency */

/* Custom Body */
.custom-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: white;
}

/* Site Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 0 2rem;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

/* Logo Section */
.header-logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-image {
    height: 3.5rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 640px) {
    .header-logo-image {
        height: 4rem;
    }
}

@media (min-width: 1024px) {
    .header-logo-image {
        height: 4.5rem;
    }
}

/* Desktop Navigation */
.header-desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .header-desktop-nav {
        display: block;
    }
}

.header-nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.header-nav-link:hover {
    color: #2563eb;
    background-color: #eff6ff;
    transform: scale(1.05);
}

.header-nav-link.active {
    background: linear-gradient(to right, #2563eb, #1d4ed8) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
    border-radius: 0.75rem !important;
}

.header-nav-link.active:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af) !important;
    transform: scale(1.05) !important;
    color: white !important;
}

/* Mobile Menu Toggle */
.header-mobile-toggle {
    display: block;
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.header-mobile-toggle:hover {
    background-color: #f1f5f9;
}

@media (min-width: 1024px) {
    .header-mobile-toggle {
        display: none;
    }
}

.header-mobile-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Navigation */
.header-mobile-nav {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.header-mobile-nav.active {
    max-height: 20rem;
}

@media (min-width: 1024px) {
    .header-mobile-nav {
        display: none;
    }
}

.mobile-nav-content {
    padding: 1rem 0;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu .header-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-menu .header-nav-link:hover {
    background-color: #f1f5f9;
    color: #2563eb;
}

.mobile-nav-menu .header-nav-link-active {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    font-weight: 600;
}

/* Site Main */
.site-main {
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo-image {
        height: 3rem;
    }
    
    .header-content {
        padding: 1rem 0;
    }
}

/* Back to Top Button */
.back-to-top-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.back-to-top-button:hover {
    background: linear-gradient(to right, #1d4ed8, #1e40af);
    transform: translateY(-2px);
}

.back-to-top-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

.back-to-top-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* Form Validation */
.field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
    background-color: #fef2f2 !important;
}

/* General Form Field Improvements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
    font-family: inherit;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Placeholder styling */
input::placeholder,
textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
    opacity: 1;
}

/* Select dropdown styling */
select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Form field animations */
@keyframes fieldFocus {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.1);
    }
    100% {
        transform: translateY(-2px);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }
}

/* Error message styling */
.field-error-message {
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.field-error-message::before {
    content: "⚠";
    font-size: 1rem;
}

/* Single Dentist Page Styles */
.single-dentist-page {
    background: white;
    min-height: 100vh;
}

/* Header with Back Button */
.single-dentist-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.single-dentist-header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.single-dentist-back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.single-dentist-back-button:hover {
    color: #1e293b;
}

/* Hero Section */
.single-dentist-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e40af, #0f172a);
    padding: 5rem 0;
    color: white;
}

.single-dentist-hero-background {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPjxwYXRoIGQ9Ik0gMTAwIDAgTCAwIDAgMCAxMDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    opacity: 0.4;
}

.single-dentist-hero-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.single-dentist-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .single-dentist-hero-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.single-dentist-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.single-dentist-hero-badge-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.single-dentist-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.single-dentist-hero-name-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.single-dentist-hero-name {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .single-dentist-hero-name {
        font-size: 3.75rem;
    }
}

.single-dentist-hero-credentials {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin: 0;
}

.single-dentist-hero-practice {
    font-size: 1.875rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.single-dentist-hero-award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: fit-content;
}

.single-dentist-hero-rating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.single-dentist-hero-rating-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.single-dentist-hero-rating-number {
    font-size: 3.75rem;
    color: white;
    font-weight: 700;
    margin: 0;
}

.single-dentist-hero-stars {
    display: flex;
    gap: 0.25rem;
}

.single-dentist-star {
    width: 1.25rem;
    height: 1.25rem;
}

.single-dentist-star-filled {
    color: #fbbf24;
}

.single-dentist-star-empty {
    color: #64748b;
}

.single-dentist-hero-reviews-section {
    flex: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
}

.single-dentist-hero-review-count {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.single-dentist-hero-review-label {
    color: #bfdbfe;
    font-size: 0.875rem;
    margin: 0;
}

/* Main Content */
.single-dentist-content {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #f8fafc, white);
}

.single-dentist-content-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.single-dentist-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .single-dentist-content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.single-dentist-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.single-dentist-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.single-dentist-card-content {
    padding: 2.5rem;
}

.single-dentist-card-title {
    font-size: 1.875rem;
    color: #1e293b;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.single-dentist-card-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.single-dentist-card-text p {
    margin: 0 0 1rem 0;
}

.single-dentist-card-text p:last-child {
    margin-bottom: 0;
}

.single-dentist-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .single-dentist-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.single-dentist-info-item {
    background: #f8fafc;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.single-dentist-info-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.single-dentist-info-text {
    color: #1e293b;
    font-weight: 500;
    margin: 0;
}

.single-dentist-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.single-dentist-specialty {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.single-dentist-hours-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.single-dentist-hours-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.single-dentist-hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-dentist-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.single-dentist-hours-item:last-child {
    border-bottom: none;
}

.single-dentist-hours-day {
    font-size: 1.125rem;
    color: #475569;
}

.single-dentist-hours-time {
    font-size: 1.125rem;
    color: #1e293b;
    font-weight: 500;
}

/* Sidebar */
.single-dentist-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.single-dentist-sidebar .single-dentist-card + .single-dentist-verification-card {
    margin-top: 2rem;
}

.single-dentist-sidebar-sticky {
    position: sticky;
    top: 6rem;
}

.single-dentist-contact-title {
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

.single-dentist-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.single-dentist-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.single-dentist-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    flex-shrink: 0;
}

.single-dentist-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.single-dentist-contact-text {
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.single-dentist-contact-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-dentist-contact-link:hover {
    color: #1e40af;
}

.single-dentist-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.single-dentist-contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-dentist-contact-button.primary {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: white;
}

.single-dentist-contact-button.primary:hover {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
}

.single-dentist-contact-button.secondary {
    background: white;
    color: #1e40af;
    border: 1px solid #1e40af;
}

.single-dentist-contact-button.secondary:hover {
    background: #f8fafc;
}

.single-dentist-verification-card {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.single-dentist-verification-content {
    padding: 2rem;
    text-align: center;
}

.single-dentist-verification-icon {
    color: #fbbf24;
    margin: 0 auto 1rem auto;
    display: block;
}

.single-dentist-verification-title {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
}

.single-dentist-verification-text {
    color: #bfdbfe;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Tailwind utility classes for index.php */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: row;
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

.gap-4 {
    gap: 1rem;
}

/* Why It Matters Grid Layout */
.why-matters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.why-matters-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.why-matters-item:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.why-matters-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.why-matters-icon svg {
    width: 2rem;
    height: 2rem;
}

.why-matters-content h3 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-matters-content p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* For Patients Grid Layout */
.cta-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom:10px!important;
}

.cta-benefit-item {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-benefit-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.cta-benefit-icon svg {
    width: 2rem;
    height: 2rem;
}

.cta-benefit-text h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-benefit-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive Design for Grids */
@media (max-width: 768px) {
    .why-matters-grid,
    .cta-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
}

/* About NEAB Page Styles */
.neab-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 4rem 0;
    text-align: center;
}

.neab-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.neab-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.neab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.neab-prose {
    max-width: 800px;
    margin: 0 auto;
}

.neab-prose p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.neab-prose span {
    font-weight: 600;
    color: #1e3a8a;
}

.neab-stands-for {
    padding: 4rem 0;
    background: white;
}

.neab-stands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.neab-stands-header {
    text-align: center;
    margin-bottom: 3rem;
}

.neab-stands-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.neab-stands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.neab-stand-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neab-stand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.neab-stand-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.neab-stand-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.neab-stand-icon.yellow {
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #0f172a;
}

.neab-stand-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.neab-stand-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.neab-stand-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.neab-stand-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

.neab-matters {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.neab-matters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.neab-matters-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.neab-matters-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(250, 204, 21, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #facc15;
}

.neab-matters-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.neab-matters h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.neab-matters p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.neab-industries-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.neab-industries-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.neab-industries-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.neab-industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.neab-industry-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.neab-industry-item span:first-child {
    font-size: 1.25rem;
}

.neab-industry-item span:last-child {
    color: white;
    font-weight: 500;
}

@media (max-width: 768px) {
    .neab-matters-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .neab-stands-grid {
        grid-template-columns: 1fr;
    }
    
    .neab-hero-content,
    .neab-container,
    .neab-stands-container,
    .neab-matters-container {
        padding: 0 1rem;
    }
}

/* FAQ Closing Section */
.faq-closing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.faq-closing-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-closing-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.faq-closing-container p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.faq-closing-container p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-closing-container h2 {
        font-size: 2rem;
    }
    
    .faq-closing-container p {
        font-size: 1rem;
    }
}

/* Terms & Privacy Closing Sections */
.terms-closing-section,
.privacy-closing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.terms-closing-container,
.privacy-closing-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.terms-closing-container h2,
.privacy-closing-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.terms-closing-container p,
.privacy-closing-container p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.terms-closing-container p:last-child,
.privacy-closing-container p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .terms-closing-container h2,
    .privacy-closing-container h2 {
        font-size: 2rem;
    }
    
    .terms-closing-container p,
    .privacy-closing-container p {
        font-size: 1rem;
    }
}

/* Find Professional Page Additional Styles */
.find-professional-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
}

.find-professional-intro-highlight {
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .find-professional-intro-title {
        font-size: 2rem;
    }
}

