body 
{
    background-color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
}

.header 
{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 15px; 
    background: #000000;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
    position: sticky;  
    top: 0;
    z-index: 1000;
    gap: 1rem;
}

.logo-container 
{
    display: flex;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    flex-shrink: 0; 
    margin-right: auto;
}

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

.logo-container div 
{
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    white-space: nowrap;
}

.header h1 
{
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}

.eslogan 
{
    font-size: 0.75rem;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    margin-top: 2px;
}

.contacto-container 
{
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.contacto-container a 
{
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.btn-volver 
{
    color: #ffffff; 
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px; 
    font-size: 0.9rem; 
    transition: 0.3s;
    margin-left: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-left: 10.5px;
}

.btn-volver:hover 
{
    background: rgba(255,255,255,0.1);
}

.about-wrapper 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-hero 
{
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-title 
{
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after 
{
    content: ''; 
    display: block; 
    width: 60px; 
    height: 4px;
    background: #c5a059; 
    margin: 10px auto 0; 
    border-radius: 2px;
}

.hero-text 
{
    font-size: 1.1rem; 
    color: #555; 
    max-width: 800px; 
    margin: 0 auto; 
    line-height: 1.8;
}

.mvv-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mvv-card 
{
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.mvv-card:hover 
{
    transform: translateY(-10px);
    border-bottom-color: #c5a059;
}

.mvv-card.highlight 
{
    background: #000000;
    color: white;
}

.mvv-card.highlight p 
{ 
    color: #ccc; 
}

.mvv-card.highlight .icon-circle 
{ 
    background: #c5a059; 
    color: black; 
}

.icon-circle 
{
    width: 60px; 
    height: 60px;
    background: #f0f0f0; 
    color: #c5a059;
    border-radius: 50%;
    display: flex; 
    justify-content: center; 
    align-items: center;
    font-size: 1.5rem; 
    margin: 0 auto 20px;
}

.mvv-card h3 
{ 
    margin-bottom: 15px; 
    font-size: 1.5rem; 
    letter-spacing: 1px; 
}

.mvv-card p 
{ 
    font-size: 0.95rem; 
    line-height: 1.6; 
    color: #666; 
}

.values-list 
{ 
    list-style: none; 
    padding: 0; 
    text-align: left; 
    display: inline-block; 
}

.values-list li 
{ 
    margin-bottom: 8px; 
    color: #555; 
    font-size: 0.95rem; 
}

.values-list li i 
{ 
    color: #c5a059; 
    margin-right: 10px; 
}

.doctor-section 
{
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #c5a059;
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 30px;
}

.doctor-content 
{ 
    flex: 1; 
}

.doctor-content h2 
{ 
    margin-bottom: 15px; 
    font-size: 1.8rem; 
}

.doctor-content p 
{ 
    color: #555; 
    line-height: 1.7; 
    margin-bottom: 20px; 
}

.stats-bar 
{ 
    display: flex; 
    gap: 40px; 
}

.stat span 
{
    display: block; 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #c5a059;
}

.stat 
{ 
    font-size: 0.9rem; 
    color: #777; 
}

.footer 
{
    background: #000000; 
    color: #ffffff; 
    text-align: center;
    padding: 2rem 1rem; 
    font-size: 0.9rem; 
    display: flex;
    flex-direction: column; 
    gap: 1.5rem;
}

@media (max-width: 1024px) 
{
    .header 
    {
        flex-direction: column; 
        justify-content: center; 
        padding: 1rem 1rem; 
        gap: 1rem; 
    }

    .contacto-container 
    {
        justify-content: center; 
        width: 100%; 
        margin-right: 0;
    }

    .doctor-section 
    { 
        padding: 30px; 
    }
}

@media (max-width: 768px) 
{
    .section-title 
    { 
        font-size: 2rem; 
    }

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

    .doctor-section 
    { 
        flex-direction: column; 
        text-align: center; 
    }

    .stats-bar 
    { 
        justify-content: center; 
    }

    .values-list 
    { 
        text-align: left; 
    }
}

@media (max-width: 600px) 
{
    .header 
    {
        position: relative; 
        padding: 1.5rem 1rem;
    }

    .contacto-container 
    { 
        flex-direction: column; 
        gap: 0.8rem; 
    }
}