.doctor-info-box {
    background: linear-gradient(135deg, #eaf6ff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 4px 24px rgba(14,97,153,0.07);
    margin-bottom: 24px;
}
.doctor-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.doctor-info-list li {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #e3eaf1;
    transition: background 0.2s;
}
.doctor-info-list li:last-child {
    border-bottom: none;
}
.info-icon {
    background: #0e6199;
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(14,97,153,0.08);
}
.info-label {
    font-weight: 600;
    color: #0e6199;
    min-width: 140px;
    margin-right: 10px;
    font-size: 1.05em;
    display: block;
}
.info-value {
    color: #222;
    font-size: 1em;
    flex: 1;
}
.doctor-info-box a {
    color: #0e6199;
    text-decoration: underline;
    transition: color 0.2s;
}
.doctor-info-box a:hover {
    color: #08456b;
}

@media (max-width: 575px) {
    .doctor-info-box {
        padding: 18px 8px;
    }
    .info-label {
        min-width: 100px;
        font-size: 0.98em;
    }
    .info-icon {
        width: 32px;
        height: 32px;
        font-size: 1em;
        margin-right: 10px;
    }
}
@media (max-width: 480px) {
    .doctor-info-box {
        padding: 16px 12px;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    .doctor-info-list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
        gap: 8px;
    }
    .info-icon {
        width: 28px;
        height: 28px;
        margin-right: 0;
        margin-bottom: 6px;
    }
    .info-label {
        min-width: auto;
        margin-right: 0;
        font-weight: 700;
        margin-bottom: 4px;
    }
    .info-value {
        line-height: 1.4;
    }
}
@media (max-width: 360px) {
    .doctor-info-box {
        padding: 12px 8px;
        margin-bottom: 12px;
    }
    .doctor-info-list li {
        padding: 12px 0;
    }
    .info-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8em;
    }
}

.award-card {
    background: linear-gradient(135deg, #eaf6ff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(14,97,153,0.07);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 180px;
    margin-bottom: 10px;
}
.award-year {
    font-size: 2.2em;
    font-weight: 700;
    color: #0e6199;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(14,97,153,0.08);
}
.award-text {
    font-size: 1.08em;
    color: #222;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 575px) {
    .award-card {
        padding: 18px 10px;
        min-height: 120px;
    }
    .award-year {
        font-size: 1.4em;
        margin-bottom: 8px;
    }
    .award-text {
        font-size: 0.98em;
    }
}

.timeline-bio {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto;
    max-width: 800px;
    position: relative;
    padding-left: 48px;
}
.timeline-bio:before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #1b225a 0%, #1b225a 100%);
    border-radius: 2px;
}
.timeline-bio-item {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.timeline-bio-year {
    background: #fff;
    border: 2px solid #1b225a;
    border-radius: 12px;
    min-width: 80px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 28px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(14,97,153,0.08);
    transition: box-shadow 0.2s;
}
.timeline-bio-year-text {
    font-size: 1.15em;
    font-weight: 700;
    color: #1b225a;
    letter-spacing: 1px;
    padding: 0 18px;
    font-family: 'Saira', 'Inter', sans-serif;
}
.timeline-bio-content {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(14,97,153,0.06);
    padding: 18px 24px;
    min-width: 220px;
    flex: 1;
}
.timeline-bio-content h4 {
    color: #0e6199;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Saira', 'Inter', sans-serif;
}
.timeline-bio-content p {
    color: #222;
    font-size: 1em;
    margin: 0;
}
.timeline-bio-item:hover .timeline-bio-year {
    box-shadow: 0 4px 24px rgba(14,97,153,0.15);
    border-color: #106b9f;
}

@media (max-width: 575px) {
    .timeline-bio {
        gap: 18px;
        padding-left: 0;
    }
    .timeline-bio:before {
        left: 14px;
        width: 2px;
    }
    .timeline-bio-year {
        min-width: 54px;
        min-height: 32px;
        margin-right: 12px;
        border-radius: 8px;
        padding: 0 6px;
    }
    .timeline-bio-year-text {
        font-size: 0.95em;
        padding: 0 8px;
    }
    .timeline-bio-content {
        padding: 11px 12px;
        min-width: 140px;
    }
    .timeline-bio-content h4 {
        font-size: 1em;
    }
}

.counter-number-gold {
    color: #9a917d;
}

.box-title-no-margin {
    margin-bottom: 0 !important;
}