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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    font-size: 16px;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.header-badge {
    background: linear-gradient(135deg, #004A7F, #0066cc);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.article {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Article Header */
.article-header {
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004A7F;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #64748b;
}

.author {
    font-weight: 500;
    color: #475569;
}

.date {
    position: relative;
    padding-left: 20px;
}

.date::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #cbd5e1;
}

.intro-text {
    font-size: 1.1rem;
    color: #475569;
    font-style: italic;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #004A7F;
}

/* Doctor Section */
.doctor-section {
    padding: 40px;
    background: #fff;
}

.doctor-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.doctor-image {
    position: relative;
}

.doctor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #004A7F;
    margin-bottom: 5px;
}

.doctor-credentials {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 5px;
}

.doctor-education {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
}

.doctor-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #004A7F;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Interview Section */
.interview-section {
    padding: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #004A7F;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #004A7F, #0066cc);
    border-radius: 2px;
}

.qa-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.qa-item:hover {
    border-left-color: #004A7F;
    box-shadow: 0 2px 10px rgba(0, 74, 127, 0.1);
}

.question {
    margin-bottom: 15px;
}

.q-label {
    display: inline-block;
    background: #004A7F;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 10px;
}

.question p {
    display: inline;
    font-weight: 500;
    color: #374151;
}

.answer {
    padding-left: 20px;
}

.a-label {
    display: block;
    font-weight: 600;
    color: #004A7F;
    margin-bottom: 8px;
}

.answer p {
    color: #475569;
    line-height: 1.7;
}

/* Testimonial Highlight */
.testimonial-highlight {
    margin: 40px 0;
    padding: 0 25px;
}

.testimonial-card {
    background: linear-gradient(135deg, #004A7F 0%, #0066cc 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 74, 127, 0.3);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 500;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
}

.editor-note {
    margin-bottom: 30px;
}

.editor-note p {
    font-size: 1.1rem;
    color: #475569;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    margin-bottom: 25px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(3px);
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.benefit {
    color: #28a745;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 30px 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .article-header {
        padding: 25px;
    }
    
    .doctor-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .doctor-stats {
        justify-content: center;
    }
    
    .interview-section {
        padding: 25px;
    }
    
    .qa-item {
        padding: 20px;
    }
    
    .testimonial-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .cta-section {
        padding: 25px;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .date::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.7rem;
    }
    
    .doctor-photo {
        width: 100px;
        height: 100px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .qa-item {
        padding: 15px;
    }
    
    .answer {
        padding-left: 0;
        margin-top: 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus {
    outline: 2px solid #004A7F;
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Print styles */
@media print {
    .header,
    .cta-section,
    .footer {
        display: none;
    }
    
    .article {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

