* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5a3d;
    --primary-light: #3d7a52;
    --primary-dark: #1a3d28;
    --secondary-color: #8b6914;
    --accent-color: #c9a227;
    --bg-color: #f5f8f3;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --white: #fff;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links2 {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links2 a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links2 a:hover,
.nav-links2 a.active {
    color: var(--primary-color);
}

.nav-links2 a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #f5f8f3 0%, #e8f0e4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(25%, -25%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-dark);
    font-weight: 500;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.hero-image {
    display: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

.features {
    padding: 80px 20px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.doctors {
    padding: 80px 20px;
    background: var(--bg-color);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.15);
}

.doctor-avatar img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.doctor-info {
    padding: 25px;
}

.doctor-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.doctor-title {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.doctor-hospital {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.doctor-specialty {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.doctor-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.view-more {
    text-align: center;
    margin-top: 40px;
}

.media {
    padding: 80px 20px;
    background: var(--white);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.media-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.media-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.media-card:hover p,
.media-card:hover .media-source {
    color: rgba(255, 255, 255, 0.8);
}

.media-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.media-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.media-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.media-source {
    font-size: 12px;

    color: var(--primary-color);
    font-weight: 500;
}

.media-card:hover .media-source {
    color: var(--accent-color);
}

.certification {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.certification .section-header h2,
.certification .section-header p {
    color: var(--white);
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.cert-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.cert-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.cert-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.cert-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about {
    padding: 80px 20px;
    background: var(--white);
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text {
    text-align: center;
    max-width: 800px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-icon {
    font-size: 24px;
}

.value-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.2);
}

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.page-header {
    padding: 120px 20px 40px;
    background: linear-gradient(135deg, #f5f8f3 0%, #e8f0e4 100%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    font-size: 16px;
}

.doctor-list {
    padding: 40px 20px;
    background: var(--white);
}

.filter-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-color);
    border-radius: 12px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.filter-select {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    min-width: 150px;
}

.filter-btn {
    margin-left: auto;
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: var(--bg-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.doctor-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 90, 61, 0.1);
    border-color: var(--primary-color);
}

.item-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.item-info {
    flex: 1;
}

.item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.item-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.item-title {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 4px 12px;
    background: rgba(139, 105, 20, 0.1);
    border-radius: 20px;
}

.item-hospital {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.item-specialty {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.item-tags {
    display: flex;
    gap: 10px;
}

.tag {
    font-size: 12px;
    color: var(--primary-color);
    padding: 4px 12px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 20px;
}

.item-action {
    margin-left: auto;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.doctor-detail {
    padding: 120px 20px 60px;
    background: var(--white);
}

.detail-header {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    color: var(--white);
    flex-wrap: wrap;
}

.detail-avatar img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.detail-info {
    flex: 1;
}

.detail-info h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.detail-title {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.title-tag {
    font-size: 14px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.detail-hospital,
.detail-department {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.detail-stats {
    display: flex;
    gap: 40px;
    margin-top: 25px;
}

.detail-stats .stat {
    text-align: center;
}

.detail-stats .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.detail-stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.detail-action {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 15px 30px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -1px;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.tab-pane p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.specialty-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.specialty-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.specialty-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.specialty-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.timeline-year {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-color);
    padding: 25px;
    border-radius: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.reviewer-date {
    font-size: 12px;
    color: var(--text-light);
}

.review-rating {
    font-size: 14px;
}

.review-content {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.article-list {
    padding: 40px 20px;
    background: var(--white);
}

.category-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    border: none;
    background: var(--bg-color);
    color: var(--text-color);
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.articles-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-color);
    padding: 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.article-card:hover {
    box-shadow: 0 5px 20px rgba(45, 90, 61, 0.1);
    border-color: var(--primary-color);
}

.article-content {
    flex: 1;
}

.article-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    padding: 4px 12px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 15px;
    margin-bottom: 12px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.qr-btn {
    margin-left: 20px;
    flex-shrink: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-btn {
    color: var(--text-light);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--text-color);
}

.modal-content h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

#pay-title {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.pay-single {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
}

.pay-label {
    font-size: 14px;
    color: var(--text-light);
}

.pay-price-single {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.pay-unit {
    font-size: 14px;
    color: var(--text-light);
}

.pay-qr-code {
    margin-bottom: 20px;
}

.pay-qr-code img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.pay-tips {
    margin-bottom: 10px;
}

.pay-tips p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.pay-tips .tips-small {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.7;
}

.modal-content p:last-child {
    font-size: 14px;
    color: var(--text-light);
}

.article-detail {
    padding: 120px 20px 60px;
    background: var(--white);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin: 20px 0;
    line-height: 1.4;
}

.article-header .article-meta {
    justify-content: center;
    gap: 25px;
    font-size: 14px;
}

.article-read {
    color: var(--text-light);
}

.article-image-large {
    margin-bottom: 40px;
}

.article-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.article-body h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body ul {
    margin: 15px 0 20px 20px;
}

.article-body li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.article-tags {
    max-width: 800px;
    margin: 40px auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-size: 14px;
    color: var(--text-light);
}

.article-tags .tag {
    margin-left: 10px;
}

.related-articles {
    max-width: 800px;
    margin: 40px auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.related-articles h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    background: var(--bg-color);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-buttons {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .about-content {
        justify-content: flex-start;
    }

    .about-values {
        flex-wrap: wrap;
        gap: 20px;
    }

    .doctors-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.auth-page {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f5f8f3 0%, #e8f0e4 100%);
    min-height: calc(100vh - 200px);
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
}

.auth-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 90, 61, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.auth-header p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.auth-illustration img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.illustration-content h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.illustration-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .auth-container {
        max-width: 100%;
    }
    
    .auth-box {
        padding: 30px;
    }
}