
:root {
    --primary-color: #b28e5c; 
    --secondary-color: #f8f9fa; 
    --text-color: #333;
    --border-color: #ddd;
    --accent-green: #28a745; 
    --accent-green-dark: #218838; 
}



.acciones-content-wrapper {
 
   
    padding: 20px; 
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
    margin-top: 20px; 
}



.acciones-content-wrapper h2, .acciones-content-wrapper h3, .acciones-content-wrapper h4, .acciones-content-wrapper h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.acciones-content-wrapper h2 {
    text-align: center;
    font-size: 1.5em; 
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

.acciones-content-wrapper h3 {
    font-size: 1.4em; 
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: var(--secondary-color);
    padding-top: 5px;
    padding-bottom: 5px;
}

.acciones-content-wrapper h4 { 
    font-size: 1.15em;
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
}

.acciones-content-wrapper h5 { 
    font-size: 1.05em;
    color: #444;
    margin-bottom: 8px;
}



.acciones-content-wrapper .section-intro {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #e9f5ff; 
    border-left: 5px solid var(--primary-color);
    border-radius: 4px;
}

.acciones-content-wrapper .section-intro ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acciones-content-wrapper .section-intro ul li {
    margin-bottom: 8px;
    font-weight: 600;
}


.acciones-content-wrapper .content-block {
    background-color: #fdfdfd;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px; 
    margin-bottom: 15px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
}

.acciones-content-wrapper .content-block-text {
    width: 100%; 
    margin-bottom: 15px; 
}

.acciones-content-wrapper .content-block-icon {
    flex-shrink: 0;
    width: 60px; 
    height: 60px; 
    background-color: var(--accent-green); 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em; 
    font-weight: bold;
    border-radius: 50%; 
    transition: background-color 0.3s ease;
   
}


.acciones-content-wrapper .content-block-icon a {
    text-decoration: none; 
    color: inherit; 
    display: flex; 
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.acciones-content-wrapper .content-block-icon:hover {
    background-color: var(--accent-green-dark); 
    cursor: pointer; 
}


.acciones-content-wrapper .sub-section {
    margin-left: 15px; 
    border-left: 3px dashed var(--border-color);
    padding-left: 10px; 
    margin-top: 15px; 
    text-align: left; 
}


.acciones-content-wrapper .hospital-section-title {
    margin-top: 40px; 
}

.acciones-content-wrapper .hospital-section.content-block {
 
    margin-bottom: 15px;
    padding: 15px;
    background-color: #fff; 
    border-color: #fff;
}
.acciones-content-wrapper .hospital-section.content-block .content-block-text {
    text-align: left; 
}


.acciones-content-wrapper .hospital-section.content-block ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left; 
}

.acciones-content-wrapper .hospital-section.content-block ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.acciones-content-wrapper .hospital-section.content-block ul li:before {
    content: '•'; 
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}


.acciones-content-wrapper .trans-section-title {
    margin-top: 40px; 
}

.acciones-content-wrapper .trans-section.content-block {
    background-color: #fff; 
    border-color: #fff;
   
    min-height: 120px;
}


@media (max-width: 768px) {
    .acciones-content-wrapper {
        padding: 10px;
    }
    .acciones-content-wrapper h2 {
        font-size: 1.6em;
    }
    .acciones-content-wrapper h3 {
        font-size: 1.3em;
    }
    
    .acciones-content-wrapper .content-block-icon {
        margin-top: 10px; 
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}