body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}

header {
    background: #004d40; /* Color que sugiere seriedad y naturaleza (SER) */
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
    border-bottom: 5px solid #00c853; /* Contraste Abundancia */
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 700;
}

header .subtitle {
    font-size: 1.1em;
    font-weight: 300;
    margin-top: 10px;
}

main {
    padding: 20px 0;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

section h2 {
    color: #004d40;
    border-left: 5px solid #00c853;
    padding-left: 15px;
    font-size: 2em;
    margin-bottom: 20px;
}

section h3 {
    color: #00796b;
    margin-top: 25px;
}

p strong {
    font-weight: 700;
    color: #004d40;
}

ul, ol {
    list-style-position: inside;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

.btn-action {
    display: inline-block;
    background: #00c853;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn-action:hover {
    background: #00a042;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 0.8em;
}
/* Estilos para el Historial de Actividad en Roadmap */
.activity-item {
    border-left: 4px solid #00796b;
    padding-left: 15px;
    margin-bottom: 20px;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 4px;
}

.activity-item h4 {
    color: #00796b;
    margin-top: 0;
    font-weight: 700;
    font-size: 1.1em;
}

.activity-date {
    font-size: 0.8em;
    color: #777;
    margin-bottom: 5px;
}
