/* concienciacion.css */

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f6fc;
    color: #333;
}

.header {
    background-color: #009C86;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.btn-back {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: white;
    color: #009C86;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #e6e6e6;
}

.main-content {
    padding: 30px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section h2 {
    color: #009C86;
    margin-bottom: 15px;
}

.section p,
.section ul {
    font-size: 1.1em;
    line-height: 1.6;
}

.section ul {
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    padding: 15px;
    background-color: #009C86;
    color: white;
    font-size: 0.9em;
    margin-top: 30px;
}
