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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #047857;
    border: 2px solid #059669;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #059669;
    color: white;
    border-color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-link.active {
    color: #2c5aa0 !important;
    font-weight: 600;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5aa0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

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

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    z-index: 1000;
    margin-top: 0;
    padding-top: 1rem;
}

.dropdown-content a {
    color: #2c3e50;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: #2c5aa0;
    padding-left: 2rem;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.nav-dropdown .nav-link::after {
    display: none;
}

.cta-button {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.cta-button::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/DJI_20251012184944_0531_D (2).jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.7), rgba(30, 58, 138, 0.8));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.8;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Key Features Section */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.15);
    background: rgba(255, 255, 255, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 20px 0 0 20px;
}

.feature-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.15);
    background: rgba(255, 255, 255, 1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 20px 0 0 20px;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .testimonials-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid-new {
        grid-template-columns: 1fr;
    }
}

.testimonial-card-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.15);
    border-color: rgba(5, 150, 105, 0.3);
}

.stars-small {
    font-size: 1.2rem;
    color: #fbbf24;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.verified-label {
    color: #059669;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(5, 150, 105, 0.1);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Old testimonials styles (kept for compatibility) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        max-width: 600px;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.12);
    border-color: rgba(5, 150, 105, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: rgba(5, 150, 105, 0.2);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content p {
    font-style: italic;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(5, 150, 105, 0.1);
}

.testimonial-author strong {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 500;
}

.section-title {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

/* Quality Recognition Section */
.quality-recognition {
    padding: 6rem 0;
    background: white;
}

.quality-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quality-content h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.quality-content p {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.quality-stats .stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s ease;
}

.quality-stats .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(44, 90, 160, 0.15);
    border-color: rgba(5, 150, 105, 0.2);
}

.quality-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.quality-stats .stat-label {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .quality-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Providers Section */
.providers {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .providers-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
        max-width: 500px;
    }
}

.provider-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.15);
}

.provider-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.provider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 405%;
    transition: transform 0.3s ease;
}

/* Individual provider image positioning */
.provider-image img[src*="sbs.jpg"] {
    object-position: center 25%;   
}

.provider-image img[src*="GC.jpg"] {
    object-position: center 10%;
}

.provider-image img[src*="BG.jpg"] {
    object-position: center 15%;
}

.provider-image img[src*="amanda byers.jpeg"] {
    object-position: center 35%;
}

.provider-card:hover .provider-image img {
    transform: scale(1.05);
}

.provider-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.provider-info h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.provider-title {
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.provider-summary {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.provider-link {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}

.provider-link:hover {
    color: #047857;
}

.providers-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Provider Profile Pages */
.provider-profile-header {
    padding: 120px 0 4rem;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
}

.profile-header-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.profile-image-large {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.profile-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.profile-header-info h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.profile-header-info h2 {
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 1rem;
    font-weight: 500;
}

.profile-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.provider-biography {
    padding: 6rem 0;
    background: white;
}

.bio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.bio-main h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.bio-main h3 {
    color: #2c5aa0;
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.bio-main p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.bio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credentials-card,
.specialties-card,
.experience-card,
.achievements-card,
.interests-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bio-sidebar h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.bio-sidebar ul {
    list-style: none;
    padding: 0;
}

.bio-sidebar li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

.bio-sidebar li:last-child {
    border-bottom: none;
}

.bio-sidebar strong {
    color: #059669;
    font-weight: 600;
}

.provider-testimonial {
    padding: 4rem 0;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    text-align: center;
}

.testimonial-highlight blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonial-highlight cite {
    font-size: 1.1rem;
    opacity: 0.9;
}

.back-to-team {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    text-align: center;
}

.back-content h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.back-content p {
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive for Provider Profiles */
@media (max-width: 768px) {
    .profile-header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image-large {
        width: 250px;
        height: 300px;
        margin: 0 auto;
    }
    
    .profile-header-info h1 {
        font-size: 2.5rem;
    }
    
    .bio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-actions {
        justify-content: center;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 1rem;
}

.service-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-note {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.service-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1e3a8a;
}

/* Quality Section */
.quality {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.quality-content {
    display: grid;
    gap: 4rem;
}

.awards-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.award-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.award-badge img {
    width: 100px;
    height: auto;
}

.award-text h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.accreditation {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.accreditation h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
}

@media (max-width: 640px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.metric-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.9rem;
    color: #64748b;
}

.comparison-note {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #2c5aa0;
}

.comparison-note h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-highlights {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-item p {
    color: #64748b;
    line-height: 1.7;
}

.community-impact {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    border-left: 5px solid #2c5aa0;
}

.community-impact h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-caption {
    margin-top: 1rem;
    text-align: center;
}

.image-caption p {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Why Choose Section */
.why-choose {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
}

.why-choose .section-header h2,
.why-choose .section-header p {
    color: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.comparison-card h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.comparison-card p {
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    text-align: center;
}

.cta-content h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 2rem;
}

.cta-note p {
    color: #10b981;
    font-weight: 500;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.appointment-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.appointment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

/* Callback Time Selection - Compact */
.callback-section {
    margin: 0;
}

.callback-label {
    display: block;
    color: #059669;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.callback-compact input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.callback-compact input:focus {
    outline: none;
    border-color: #059669;
    background: white;
}

.callback-compact input::placeholder {
    color: #94a3b8;
}

/* Review Box in Contact Details */
.review-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    padding: 1.5rem !important;
    border-radius: 10px;
    border: 2px solid #f59e0b !important;
    margin-top: 2rem !important;
    text-align: center;
}

.review-box h3 {
    color: #92400e !important;
    margin-bottom: 0.5rem;
}

.review-box p {
    color: #78350f;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-box .btn {
    width: 100%;
}

/* ASC Value & Benefits Section */
.asc-value-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.asc-value-section h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.table-column h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.cost-comparison-table,
.benefits-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-collapse: collapse;
}

.cost-comparison-table thead,
.benefits-table thead {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
}

.cost-comparison-table th,
.benefits-table th {
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
}

.cost-comparison-table td,
.benefits-table td {
    padding: 1.25rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
}

.cost-comparison-table tbody tr:last-child td,
.benefits-table tbody tr:last-child td {
    border-bottom: none;
}

.asc-row {
    background: rgba(5, 150, 105, 0.05);
}

.hospital-row {
    background: rgba(220, 38, 38, 0.05);
}

.cost-savings {
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

.cost-standard {
    color: #dc2626;
    font-weight: 600;
}

.table-note {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: 1.5rem;
}

.table-note p {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.table-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-note li {
    padding: 0.5rem 0;
    color: #64748b;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.table-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.screening-guidelines {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid #f59e0b;
}

.screening-guidelines p {
    color: #92400e;
}

.screening-guidelines li {
    color: #78350f;
}

.screening-guidelines li::before {
    color: #92400e;
}

.value-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.value-cta h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.value-cta p {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .asc-value-section h2 {
        font-size: 2rem;
    }
    
    .table-column h3 {
        font-size: 1.4rem;
    }
    
    .cost-comparison-table th,
    .benefits-table th,
    .cost-comparison-table td,
    .benefits-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .value-cta {
        padding: 2rem;
    }
}

/* Urgent Care Notice */
.urgent-care-notice {
    background: linear-gradient(135deg, #fef2f2, #fee2e2) !important;
    padding: 1.5rem !important;
    border-radius: 10px;
    border: 2px solid #fca5a5 !important;
    margin-top: 2rem !important;
}

.urgent-care-notice h3 {
    color: #dc2626 !important;
    margin-bottom: 0.75rem;
}

.urgent-care-notice p {
    color: #991b1b;
    line-height: 1.6;
    margin: 0;
}

.urgent-care-notice strong {
    color: #7f1d1d;
    font-weight: 700;
}

.urgent-care-notice a {
    color: #dc2626;
    font-weight: 700;
}

.urgent-care-banner {
    padding: 2rem 0;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-top: 3px solid #dc2626;
    border-bottom: 3px solid #dc2626;
}

.urgent-care-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.urgent-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.urgent-text h3 {
    color: #dc2626;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.urgent-text p {
    color: #991b1b;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.urgent-text a {
    color: #7f1d1d;
    text-decoration: none;
    font-weight: 700;
}

.urgent-text a:hover {
    text-decoration: underline;
}

.urgent-text strong {
    color: #7f1d1d;
    font-weight: 700;
}

@media (max-width: 768px) {
    .urgent-care-content {
        flex-direction: column;
        text-align: center;
    }
    
    .urgent-icon {
        font-size: 2rem;
    }
}

/* Review CTA Sections */
.review-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    text-align: center;
}

.review-cta-content h2 {
    color: #92400e;
    margin-bottom: 1rem;
}

.review-cta-content p {
    color: #78350f;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.review-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #92400e;
    font-style: italic;
}

.review-cta-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
}

.review-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-banner-text {
    flex: 1;
    min-width: 300px;
}

.review-banner-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.review-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .review-banner-content {
        text-align: center;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .time-inputs {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.social-links a {
    color: #cbd5e1;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.review-link {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-link:hover {
    background: rgba(255, 215, 0, 0.2);
}

.footer-awards {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.award-badge {
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.footer-contact a {
    color: #ffd700;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

/* FAQ Promotion Elements */
.faq-callout {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    border: 2px solid #3b82f6;
}

.faq-callout h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.faq-callout p {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.faq-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, #059669, #047857);
}

.faq-banner-content {
    text-align: center;
    color: white;
}

.faq-banner-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.faq-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-faq-highlight {
    color: #ffd700 !important;
}

.footer-faq-highlight:hover {
    color: #ffed4e !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-template-columns: 1fr;
    }

    .awards-section {
        grid-template-columns: 1fr;
    }

    .award-highlight {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 1rem;
    }

    .benefit-card,
    .service-content,
    .metric-card,
    .comparison-card {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Provider Detail Styles */
.providers-detail {
    padding: 4rem 0;
}

.provider-detail-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.provider-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.provider-info h2 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.provider-info h3 {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.provider-specialties {
    margin-top: 2rem;
}

.provider-specialties h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.provider-specialties ul {
    list-style: none;
    padding: 0;
}

.provider-specialties li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

/* About Page - Provider Bio Sections */
.providers-detail {
    padding: 4rem 0 1.5rem 0;
    background: white;
}

.provider-bio-section {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #e2e8f0;
}

.provider-bio-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.provider-bio-header {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.provider-bio-image {
    width: 250px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.provider-bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.provider-bio-image img[src*="sbs.jpg"] {
    object-position: center 45%;
}

.provider-bio-image img[src*="GC.jpg"] {
    object-position: center 25%;
}

.provider-bio-image img[src*="BG.jpg"] {
    object-position: center 30%;
}

.provider-bio-header-info h3 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.provider-specialty {
    color: #059669;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.provider-bio-text {
    margin-top: 2rem;
}

.provider-bio-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .provider-bio-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .provider-bio-image {
        margin: 0 auto;
    }
}

/* About Page - Providers Grid (Legacy - can be removed if not used) */
.providers-about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.provider-about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    text-decoration: none;
    color: inherit;
}

.provider-about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.15);
}

.provider-about-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.provider-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transition: transform 0.3s ease;
}

.provider-about-card:hover .provider-about-image img {
    transform: scale(1.05);
}

/* Individual positioning for about page */
.provider-about-image img[src*="sbs.jpg"] {
    object-position: center 45%;
}

.provider-about-image img[src*="GC.jpg"] {
    object-position: center 25%;
}

.provider-about-image img[src*="BG.jpg"] {
    object-position: center 30%;
}

.provider-about-info {
    padding: 2rem;
}

.provider-about-info h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.provider-about-title {
    color: #059669;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.provider-about-summary {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .providers-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
}

/* Support Staff Section */
.support-staff {
    padding: 6rem 0;
    background: white;
}

.staff-intro {
    text-align: center;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.staff-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.12);
}

.staff-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.3s ease;
}

.staff-card:hover .staff-image img {
    transform: scale(1.05);
}

.staff-info {
    padding: 1.5rem;
    text-align: center;
}

.staff-info h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.staff-title {
    color: #059669;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Practice Philosophy */
.practice-philosophy {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.philosophy-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Service Detail Styles */
.services-overview {
    padding: 4rem 0 2rem;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Services - No Images */
.services-main {
    padding: 2rem 0 4rem;
    background: white;
}

.service-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(5, 150, 105, 0.1);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.service-section:hover {
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.12);
    transform: translateY(-2px);
}

.service-section h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-section h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.service-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-section ul {
    margin: 1rem 0 2rem;
    padding-left: 1.5rem;
}

.service-section li {
    margin-bottom: 0.75rem;
    color: #64748b;
    line-height: 1.6;
}

.services-detail {
    padding: 2rem 0 4rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card:nth-child(even) .service-image {
    order: 2;
}

.service-detail-card:nth-child(even) .service-content {
    order: 1;
}

.service-detail-card .service-image {
    height: 400px;
}

.service-detail-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-card .service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-card h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.service-detail-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-card li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.service-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
}

.service-cta {
    margin-top: 2rem;
}

/* Additional Services */
.additional-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .additional-services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.additional-service h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Conditions We Treat */
.conditions-treated {
    padding: 4rem 0;
    background: white;
}

.conditions-treated h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.conditions-list {
    list-style: none;
    padding: 0;
}

.conditions-list li {
    padding: 0.75rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

.conditions-list li:last-child {
    border-bottom: none;
}

.conditions-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
}

.conditions-cta p {
    color: #2c5aa0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Services */
.why-choose-services {
    padding: 4rem 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.why-choose-item {
    text-align: center;
    padding: 2rem;
}

.why-choose-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.contact-form-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem;
    border-radius: 20px;
}

.contact-form-section h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hipaa-disclaimer {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #f59e0b;
}

.hipaa-disclaimer p {
    margin: 0;
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hipaa-disclaimer strong {
    color: #78350f;
}

.hipaa-disclaimer a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.hipaa-disclaimer a:hover {
    text-decoration: underline;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

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

.map-info h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.address-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(5, 150, 105, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.address-box h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.address-text {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Appointment Info */
.appointment-info {
    padding: 4rem 0;
}

.appointment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.appointment-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.appointment-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.appointment-card .btn {
    margin-top: 1.5rem;
}

/* Insurance Info */
.insurance-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.insurance-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.insurance-text h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.insurance-cta {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.insurance-cta h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Preparation Info */
.preparation-info {
    padding: 4rem 0;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.preparation-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.preparation-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.preparation-item ul {
    padding-left: 1.5rem;
}

.preparation-item li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Emergency Info */
.emergency-info {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

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

.emergency-content h2 {
    color: #dc2626;
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.emergency-content > p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.emergency-contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .emergency-contacts-grid {
        grid-template-columns: 1fr;
    }
}

.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.emergency-contact {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.emergency-contact h3 {
    color: #dc2626;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.emergency-contact p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.emergency-contact p:last-child {
    margin-bottom: 0;
}

.primary-emergency {
    border: 2px solid #2c5aa0;
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.15);
    position: relative;
}

.primary-emergency h3 {
    color: #2c5aa0;
}

.affiliated-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 0.3rem 0.85rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.urgent-911 {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.urgent-911 h3 {
    color: white;
}

.urgent-911 p {
    color: white;
}

.emergency-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: #64748b;
    font-size: 0.95rem;
}

/* Endoscopy Page Styles */
.facility-overview {
    padding: 4rem 0;
}

.facility-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.facility-text h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.facility-text h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
}

.facility-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Experience Timeline */
.patient-experience {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.experience-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-number {
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Facility Features */
.facility-features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Procedures Offered */
.procedures-offered {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .procedures-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.procedure-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.procedure-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.procedure-note {
    font-size: 0.9rem;
    color: #059669;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Accreditation */
.accreditation {
    padding: 4rem 0;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.accreditation-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accreditation-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Telemedicine Styles */
.telemedicine-overview {
    padding: 4rem 0;
}

.telemedicine-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.telemedicine-text h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.telemedicine-text h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
}

.telemedicine-text ul {
    padding-left: 1.5rem;
}

.telemedicine-text li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.telemedicine-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Appropriate Cases */
.appropriate-cases {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.case-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-category h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.case-category ul {
    padding-left: 1.5rem;
}

.case-category li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.cases-note {
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
    color: #64748b;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
}

.steps-timeline {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Technical Requirements */
.technical-requirements {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.requirement-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-category h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.requirement-category ul {
    padding-left: 1.5rem;
}

.requirement-category li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.tech-support {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
    text-align: center;
}

.tech-support h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Privacy & Security */
.privacy-security {
    padding: 4rem 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.privacy-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.privacy-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Insurance & Billing */
.insurance-billing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.billing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.billing-text h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.billing-cta {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.billing-cta h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Patient Portal Styles */
.portal-access {
    padding: 4rem 0;
}

.portal-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.login-card {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.login-card h2 {
    margin-bottom: 1rem;
    color: white;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.login-help {
    margin-top: 2rem;
}

.login-help a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.portal-features {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portal-features h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.features-list .feature-item {
    padding: 1.5rem;
    border-left: 4px solid #2c5aa0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 0 10px 10px 0;
}

.features-list .feature-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.features-list .feature-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Registration Info */
.registration-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.registration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.registration-steps h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.steps-list {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #64748b;
    margin: 0;
}

.registration-requirements {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.registration-requirements h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.registration-requirements ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.registration-requirements li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.registration-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.registration-cta p {
    margin-bottom: 1rem;
    color: #2c5aa0;
    font-weight: 600;
}

/* Portal Benefits */
.portal-benefits {
    padding: 4rem 0;
}

/* Security Features */
.security-privacy {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.security-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.security-features h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.security-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.security-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.security-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.privacy-tips {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-tips h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.privacy-tips ul {
    padding-left: 1.5rem;
}

.privacy-tips li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

/* Technical Support */
.technical-support {
    padding: 4rem 0;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.support-info h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.support-options {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.support-option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.support-option h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.common-issues h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Updates for Multi-page */
@media (max-width: 768px) {
    .provider-detail-card,
    .service-detail-card,
    .facility-content,
    .telemedicine-content,
    .contact-grid,
    .portal-login,
    .registration-content,
    .insurance-content,
    .billing-content,
    .security-content,
    .support-content {
        grid-template-columns: 1fr;
    }

    .service-detail-card:nth-child(even) .service-image,
    .service-detail-card:nth-child(even) .service-content {
        order: unset;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item,
    .step-item,
    .step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-number,
    .step-number {
        margin: 0 auto 1rem;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .provider-detail-card,
    .service-detail-card .service-content,
    .appointment-card,
    .login-card,
    .portal-features {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .login-buttons {
        gap: 0.5rem;
    }

    .emergency-contacts,
    .requirements-grid,
    .procedures-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Page */
.faq-quick-links {
    padding: 3rem 0;
    background: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-link-card {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.quick-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #10b981, #059669);
}

@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

.faq-content {
    padding: 2rem 0 6rem;
    background: white;
}

.faq-category {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e2e8f0;
}

.faq-category:last-of-type {
    border-bottom: none;
}

.faq-category h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #059669;
    display: inline-block;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.1);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.faq-item ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-item li {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-item strong {
    color: #059669;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    margin-top: 3rem;
}

.faq-cta h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.faq-cta p {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages (Privacy & Terms) */
.legal-content {
    padding: 4rem 0 6rem;
    background: white;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.2rem;
    color: #2c5aa0;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-left: 4px solid #2c5aa0;
    border-radius: 0 10px 10px 0;
}

.legal-text h2 {
    color: #2c5aa0;
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-text h3 {
    color: #2c5aa0;
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.legal-text h4 {
    color: #059669;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
}

.legal-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-text ul {
    margin: 1rem 0 2rem;
    padding-left: 2rem;
}

.legal-text li {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.contact-box p {
    margin: 0;
    line-height: 1.8;
}

.contact-box a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.legal-footer p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Forms Page */
.forms-intro {
    padding: 3rem 0;
    background: white;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.intro-content p {
    color: #64748b;
    font-size: 1.1rem;
}

.forms-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.forms-section.medical-records {
    background: white;
    padding: 3rem 0 4rem 0;
}

.forms-section h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.forms-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .forms-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
}

.form-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.form-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.featured-form {
    border: 2px solid #2c5aa0;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.form-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    grid-column: 1 / -1;
}

.form-placeholder h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.form-placeholder p {
    color: #64748b;
}

.form-placeholder a {
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
}

.form-placeholder a:hover {
    text-decoration: underline;
}

.forms-help {
    padding: 4rem 0;
    background: white;
}

.help-content h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.help-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.help-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}

/* Library Page */
.library-content {
    padding: 4rem 0;
    background: white;
}

.library-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e2e8f0;
}

.library-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.library-section h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.library-section h3 {
    color: #2c5aa0;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.anatomy-content {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.anatomy-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .anatomy-grid {
        grid-template-columns: 1fr;
    }
}

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

.anatomy-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
    padding: 1rem;
}

.anatomy-text h3 {
    margin-top: 0;
}

.anatomy-text h3 a {
    color: #2c5aa0;
    text-decoration: none;
}

.anatomy-text h3 a:hover {
    text-decoration: underline;
}

.anatomy-text p {
    color: #4a5568;
    line-height: 1.7;
}

.anatomy-content p {
    color: #4a5568;
    line-height: 1.7;
}

.disease-category {
    margin-bottom: 2rem;
}

.letter-heading {
    color: #059669;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #059669;
    display: inline-block;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list > li {
    padding: 0.75rem 0;
    color: #4a5568;
    line-height: 1.7;
}

.resource-list a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.resource-list a:hover {
    text-decoration: underline;
    color: #1e3a8a;
}

.sub-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.sub-list li {
    padding: 0.4rem 0;
    color: #64748b;
    font-size: 0.95rem;
}

.sub-list a {
    color: #059669;
}

.sub-list a:hover {
    color: #047857;
}

.educational-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.educational-list li {
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.educational-list li:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateX(5px);
}

.educational-list a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.educational-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .educational-list {
        grid-template-columns: 1fr;
    }
}

.search-engines {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
}

.search-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.professional-section {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
}

.professional-note {
    color: #78350f;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.professional-section h3 {
    color: #92400e;
}

.professional-list {
    list-style: none;
    padding: 0;
}

.professional-list li {
    padding: 0.75rem 0;
    color: #78350f;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.professional-list li:last-child {
    border-bottom: none;
}

.professional-list a {
    color: #92400e;
    text-decoration: none;
    font-weight: 500;
}

.professional-list a:hover {
    text-decoration: underline;
}

.guidelines-disclaimer {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    color: #78350f;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

/* Library - Tests and Procedures */
.test-sections {
    display: grid;
    gap: 2rem;
}

.test-detail {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2c5aa0;
}

.test-detail h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.test-detail h4 {
    color: #059669;
    margin: 1.5rem 0 0.75rem;
}

.test-detail p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.test-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.test-list li {
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Library - PPI Content */
.ppi-content {
    max-width: 900px;
    margin: 0 auto;
}

.ppi-content h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
}

.ppi-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.ppi-list {
    list-style: none;
    padding: 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0 2rem;
}

.ppi-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
}

.ppi-list li:last-child {
    border-bottom: none;
}

.ppi-risks {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
    margin-top: 2rem;
}

.ppi-risks h3 {
    color: #92400e;
    margin: 0 0 1rem;
}

.ppi-risks p {
    color: #78350f;
    line-height: 1.7;
}

.ppi-risks ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.ppi-risks li {
    color: #78350f;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.ppi-risks em {
    font-size: 0.9rem;
}

/* Library - Tests with Images */
.test-with-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.test-images-capsule {
    text-align: center;
}

.test-images-capsule img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
    padding: 0.5rem;
}

@media (max-width: 640px) {
    .test-with-images {
        grid-template-columns: 1fr;
    }
}

/* Library - Books */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.book-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.book-image {
    margin-bottom: 1.5rem;
}

.book-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.book-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: left;
}

.book-item p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.book-item p:last-child {
    margin-bottom: 0;
}

.book-item strong {
    color: #059669;
}

/* Upper Endoscopy Page */
.egd-overview {
    padding: 4rem 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.overview-text h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.overview-text h3 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
}

.overview-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.overview-text li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.75rem;
    font-style: italic;
}

.normal-findings {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.normal-findings h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
}

.findings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.finding-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.finding-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.finding-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.procedure-process {
    padding: 4rem 0;
    background: white;
}

.procedure-process h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.process-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.process-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.process-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.egd-conditions {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.egd-conditions h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.condition-detail {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.condition-detail:last-child {
    margin-bottom: 0;
}

.condition-detail h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.condition-detail h4 {
    color: #059669;
    margin: 1.5rem 0 1rem;
}

.condition-content {
    display: grid;
    gap: 2rem;
}

.condition-content-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.condition-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.condition-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.condition-images-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

.condition-image img,
.condition-image-single img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.img-caption {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.75rem;
    font-style: italic;
}

.single-image-section {
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
}

.single-image-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .condition-content-row {
        grid-template-columns: 1fr;
    }
    
    .condition-images {
        grid-template-columns: 1fr;
    }
    
    .condition-images-row {
        grid-template-columns: 1fr;
    }
}

.egd-faq {
    padding: 4rem 0;
    background: white;
}

.egd-faq h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.egd-safety {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.egd-safety h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.safety-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.safety-intro p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.risk-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.risk-box h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.risk-box p {
    color: #4a5568;
    line-height: 1.7;
}

.risk-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.risk-box li {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.warning-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #fca5a5;
    max-width: 900px;
    margin: 0 auto;
}

.warning-box h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #991b1b;
    line-height: 1.7;
}

.warning-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.warning-box li {
    color: #991b1b;
    margin-bottom: 0.5rem;
}

.warning-box strong {
    color: #7f1d1d;
}

/* Colonoscopy Page */
.colonoscopy-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.intro-highlight {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-highlight h2 {
    color: #92400e;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.intro-highlight p {
    color: #78350f;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.colonoscopy-overview {
    padding: 4rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

.quality-standards {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.quality-standards h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (max-width: 1024px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .standards-grid {
        grid-template-columns: 1fr;
    }
}

.standard-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.standard-number {
    background: #2c5aa0;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.standard-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.expert-quotes {
    margin-top: 3rem;
}

.expert-quotes blockquote {
    background: white;
    padding: 2rem;
    border-left: 4px solid #2c5aa0;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.expert-quotes blockquote p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.expert-quotes cite {
    color: #2c5aa0;
    font-weight: 600;
    font-size: 0.95rem;
}

.quality-performance {
    padding: 4rem 0;
    background: white;
}

.quality-performance h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.performance-intro {
    text-align: center;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.quality-metrics-table {
    max-width: 1100px;
    margin: 0 auto;
}

.quality-metrics-table h3 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
}

.comparison-table th {
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table em {
    font-size: 0.85rem;
    color: #64748b;
}

.highlight-cell {
    font-weight: 700;
    color: #2c5aa0;
}

.superior {
    background: rgba(5, 150, 105, 0.05);
}

.table-note {
    margin-top: 2rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.why-metrics-matter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.why-metrics-matter h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.metric-explanation {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.metric-explanation:last-child {
    margin-bottom: 0;
}

.metric-explanation h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.metric-explanation p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.metric-explanation p:last-child {
    margin-bottom: 0;
}

.colonoscopy-findings {
    padding: 4rem 0;
    background: white;
}

.colonoscopy-findings h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.finding-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e2e8f0;
}

.finding-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.finding-section h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.finding-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.finding-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.finding-content p {
    color: #4a5568;
    line-height: 1.7;
}

.polyp-images,
.cancer-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.polyp-image,
.cancer-image {
    text-align: center;
}

.polyp-image img,
.cancer-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wide-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.flat-lesion-content {
    text-align: center;
}

.flat-lesion-content p {
    text-align: left;
    color: #4a5568;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.cancer-staging {
    margin: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .finding-content,
    .polyp-images,
    .cancer-images {
        grid-template-columns: 1fr;
    }
}

.colonoscopy-preparation {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.colonoscopy-preparation h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.prep-importance {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
}

.prep-importance p {
    color: #78350f;
    line-height: 1.7;
    margin: 0;
}

.prep-details {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.prep-details h3,
.prep-details h4 {
    color: #2c5aa0;
    margin: 1.5rem 0 1rem;
}

.prep-details h3 {
    margin-top: 0;
}

.prep-details ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.prep-details li {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.procedure-day {
    padding: 4rem 0;
    background: white;
}

.procedure-day h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-steps {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step .step-number {
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c5aa0;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 640px) {
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-step .step-number {
        margin: 0 auto;
    }
}

.colonoscopy-faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.colonoscopy-faq h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.colonoscopy-safety {
    padding: 4rem 0;
    background: white;
}

.colonoscopy-safety h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.colonoscopy-safety .safety-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.colonoscopy-safety .safety-intro p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.risk-stats {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.risk-stats h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.stats-intro {
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 600;
}

.risk-stats ul {
    padding-left: 1.5rem;
    margin: 0;
}

.risk-stats li {
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.stats-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
    line-height: 1.6;
}

.stats-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid #059669;
}

.stats-highlight p {
    color: #065f46;
    margin: 0;
    font-size: 1.05rem;
}

.patient-role {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.patient-role h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .role-grid {
        grid-template-columns: 1fr;
    }
}

.role-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.role-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.role-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Hemorrhoid Treatment Page */
.exclusive-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    text-align: center;
}

.exclusive-content h2 {
    color: #92400e;
    margin-bottom: 1rem;
}

.exclusive-content p {
    color: #78350f;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.colonoscopy-requirement {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #f59e0b;
    max-width: 800px;
    margin: 0 auto;
}

.colonoscopy-requirement p {
    color: #92400e;
    font-weight: 600;
    margin: 0;
}

.hemorrhoid-overview {
    padding: 4rem 0;
    background: white;
}

.crh-system {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.crh-system h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.crh-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.crh-intro p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

.crh-benefits {
    margin-bottom: 3rem;
}

.crh-benefits h3 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid-hemorrhoid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .benefits-grid-hemorrhoid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid-hemorrhoid {
        grid-template-columns: 1fr;
    }
}

.benefit-item-hemorrhoid {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-item-hemorrhoid h4 {
    color: #059669;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.benefit-item-hemorrhoid p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.crh-details {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto 2rem;
}

.crh-details p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.crh-details p:last-child {
    margin-bottom: 0;
}

.crh-video-link {
    text-align: center;
    margin-top: 2rem;
}

.crh-video-link p {
    margin-bottom: 1rem;
}

.crh-video-link a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.crh-video-link a:hover {
    text-decoration: underline;
}

.treatment-comparison {
    padding: 4rem 0;
    background: white;
}

.treatment-comparison h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-chart {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.comparison-chart img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.comparison-chart img:hover {
    transform: scale(1.02);
}

.chart-caption {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.treatment-options {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.treatment-options h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.treatment-detail {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-detail:last-child {
    margin-bottom: 0;
}

.treatment-detail h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.treatment-detail h4 {
    color: #059669;
    margin: 1.5rem 0 1rem;
}

.treatment-detail p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.treatment-detail p:last-child {
    margin-bottom: 0;
}

.treatment-warning {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #fca5a5;
    margin-top: 2rem;
}

.treatment-warning p {
    color: #991b1b;
    margin: 0;
    line-height: 1.7;
}

.treatment-warning strong {
    color: #7f1d1d;
}

.hemorrhoid-faq {
    padding: 4rem 0;
    background: white;
}

.hemorrhoid-faq h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

/* Facility Comparison Page */
.facility-intro {
    padding: 3rem 0;
    background: white;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

.facility-overview-comparison {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.facility-overview-comparison h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

.facility-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.sec-card {
    border: 3px solid #059669;
}

.hospital-card {
    border: 2px solid #cbd5e1;
}

.facility-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.facility-card p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.eligibility-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
    max-width: 900px;
    margin: 0 auto;
}

.eligibility-note p {
    color: #78350f;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.eligibility-note p:last-child {
    margin-bottom: 0;
}

.detailed-comparison {
    padding: 4rem 0;
    background: white;
}

.detailed-comparison h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .comparison-grid-detailed {
        grid-template-columns: 1fr;
    }
}

.comparison-column {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.sec-column {
    border: 3px solid #059669;
}

.hospital-column {
    border: 2px solid #cbd5e1;
}

.comparison-column h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    padding: 0.75rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.facility-features li:last-child {
    border-bottom: none;
}

.sec-column .facility-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
}

.physician-owned {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #059669;
    max-width: 900px;
    margin: 0 auto;
}

.physician-owned p {
    color: #065f46;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.cost-comparison-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.cost-comparison-section h2 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 2rem;
}

.cost-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cost-intro p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cost-table-section {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cost-table-section h3 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.cost-note {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.facility-cost-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-collapse: collapse;
}

.facility-cost-table thead {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
}

.facility-cost-table th {
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
}

.facility-cost-table td {
    padding: 1.25rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.facility-cost-table tbody tr:last-child td {
    border-bottom: none;
}

.sec-row {
    background: rgba(5, 150, 105, 0.05);
}

.hospital-row {
    background: rgba(220, 38, 38, 0.05);
}

.savings-row {
    background: rgba(5, 150, 105, 0.1);
    font-weight: 600;
}

.cost-highlight {
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

.savings-amount {
    color: #059669;
    font-weight: 700;
    font-size: 1.3rem;
}

.disclaimer {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
}

.research-link {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.research-link a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.research-link a:hover {
    text-decoration: underline;
}

/* Print styles */
@media print {
    .navbar,
    .hero-scroll,
    .cta-section,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
