/* Identidad Visual Ohlalab */
:root {
    --primary-color: #EE5B9B;
    --text-color: #2c3e50;
    --bg-color: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 40px 15px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 850px;
    background: var(--white);
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 6px solid var(--primary-color);
}

header {
    text-align: center;
    margin-bottom: 35px;
}

header h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

header p {
    font-weight: bold;
    color: #888;
}

.content h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.content p, .content li {
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

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

.content li {
    margin-bottom: 8px;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

footer p {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #d64986;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
}