body {
    background: #ffffff;
}
.header-section {
    background-color: #ffffff;
}

.top-bar {
    background-color: #f57c00;
    padding: 6px 40px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-content a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
}

.top-bar-content a:hover {
    opacity: 0.8;
}

/* ==============================
   HEADER PRINCIPAL
================================ */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ----- IZQUIERDA (LOGO + TEXTO) ----- */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 80px;
}

.logo-text {
    line-height: 1.2;
}

.ocuilan-title {
    font-size: 22px;
    font-weight: bold;
    color: #e91e63;
}

.motto {
    font-size: 13px;
    color: #555;
}

/* ----- DERECHA (TELÉFONO Y CORREO) ----- */
.header-right {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 20px;
    color: #f57c00;
}

.text-group {
    display: flex;
    flex-direction: column;
}

.number,
.email {
    font-size: 14px;
    font-weight: bold;
    color:#222 !important;
}

.label {
    font-size: 12px;
    color: #f57c00;
}
/* ==============================
   TÍTULO / ACORDEÓN
================================ */
.title {
    text-align: center;    
    margin: 40px auto 20px;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #f57c00;       
    cursor: pointer;
}

.accordion-toggle {
    font-size: 28px;
    font-weight: bold;
    color: #f57c00;
}

/* ==============================
   CONTENEDOR ACORDEÓN
================================ */
.container {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 30px 40px;
    border: 1px solid #e4e0e0;
    background-color: #ffffff;
}

/* ==============================
   GRID Y LISTADO
================================ */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.item {
    display: flex;
    align-items: center;      
    gap: 12px;
    font-size: 15px;
}

.item a {
    color: #222;             
    font-weight: 600;
    text-decoration: none;
    line-height: 1.4;
}

.item a:hover {
    text-decoration: underline;
}

.pdf-icon {
    width: 24px;
    height: 24px;
    background-color: #f57c00;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
/* AJUSTE PARA FUNCIONAMIENTO DEL ACORDEÓN */
.accordion-content {
    display: none; 
    overflow: hidden;
}
.accordion-content.open {
    display: block;
}
/* Acordeones cerrados por defecto */

.accordion-header {
    cursor: pointer;
    user-select: none; 
}
.h2 {
    margin: 0;
    font-size: 20px;
    color: #f57c00;
    font-weight: bold;
    margin-bottom: 15px;
    text-emphasis-color: calc();
}
.header-section {
    color: #000000;
}

.header-section h1 {
    color: #000000;
    text-align: center;
}

/* ==============================
   RESPONSIVE ACORDEÓN
================================ */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
}


/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .top-bar-content {
        justify-content: center;
    }
}
