.elementor-4446 .elementor-element.elementor-element-cb55977{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-4f14beb *//* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Sophisticated Medical Practice */
    --primary-color: #2c5f7c;
    --primary-dark: #1a3d52;
    --primary-light: #4a8db0;
    --accent-color: #c19a6b;
    --accent-light: #d4b892;
    --text-dark: #2d2d2d;
    --text-medium: #555555;
    --text-light: #777777;
    --background-light: #f9f9f9;
    --background-cream: #faf8f5;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --success-green: #5a8f7b;
    --warning-red: #c75b5b;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header Styles */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-normal);
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 3rem 0 2.5rem;
}

.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.7;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.separator {
    opacity: 0.5;
}

.category {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Featured Image */
.featured-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Content Layout - Centered */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 20px;
}

/* Article Content */
.article-content {
    width: 100%;
    max-width: 100%;
}


.intro-section {
    margin-bottom: 2.5rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Typography */
h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

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

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

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.content-section:last-of-type {
    border-bottom: none;
}

/* Table of Contents */
.table-of-contents {
    background-color: var(--background-cream);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 8px 8px 0;
}

.table-of-contents h2 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 0.75rem;
}

.table-of-contents a {
    color: var(--text-medium);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.table-of-contents a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Info Boxes */
.info-box,
.tip-box,
.warning-box {
    padding: 1.75rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid;
}

.info-box {
    background-color: #f0f7fa;
    border-color: var(--primary-color);
}

.tip-box {
    background-color: #f9f6f0;
    border-color: var(--accent-color);
}

.warning-box {
    background-color: #fef5f5;
    border-color: var(--warning-red);
}

.info-box h3,
.tip-box h3,
.warning-box h3 {
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-box ul,
.tip-box ul,
.warning-box ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.info-box li,
.tip-box li,
.warning-box li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.cta-subtext {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Related Procedures */
.related-procedures {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: var(--background-light);
    border-radius: 12px;
}

.related-procedures h2 {
    margin-top: 0;
    text-align: center;
    margin-bottom: 2rem;
}

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.procedure-card {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.procedure-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.procedure-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.procedure-card h3 a:hover {
    color: var(--primary-dark);
}

.procedure-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-section h2 {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-medium);
}

/* Author Bio */
.author-bio {
    background-color: var(--background-cream);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.author-bio h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.author-bio p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.learn-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.learn-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.learn-more::after {
    content: ' →';
    margin-left: 0.25rem;
}

/* Sidebar - Hidden since all content is centered */
.sidebar {
    display: none;
}


.sidebar-widget {
    background-color: var(--background-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h3 {
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--primary-dark);
}

.contact-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
}

.contact-widget h3 {
    color: var(--white);
}

.contact-widget p {
    color: rgba(255, 255, 255, 0.95);
}

.sidebar-cta {
    display: block;
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.sidebar-cta:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    text-decoration: none;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget li {
    margin-bottom: 0.875rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.sidebar-widget a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.experience {
    color: var(--accent-light) !important;
    font-style: italic;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin: 1rem 0;
    transition: all var(--transition-normal);
}

.footer-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
}

.disclaimer {
    font-size: 0.8rem !important;
    font-style: italic;
    margin-top: 1rem !important;
    font-style: italic;
    margin-top: 1rem !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }
    
    .content-wrapper {
        padding: 2rem 15px;
    }
    
    .procedure-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.65rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.65rem;
    }
    
    .post-meta {
        flex-wrap: wrap;
    }
    
    .info-box,
    .tip-box,
    .warning-box,
    .cta-box {
        padding: 1.25rem;
    }
    
    .related-procedures {
        padding: 1.5rem;
    }
    
    .procedure-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .sidebar,
    .site-footer,
    .cta-box,
    .related-procedures {
        display: none;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}/* End custom CSS */