body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.section-metodo {
    padding: 2rem 1rem;
}

.section-title {
    font-size: 1.8rem;
    color: #517B39;
    margin-bottom: 1rem;
    font-weight: bold;
}

.step-list {
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.step-list li {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-left: 40px;
    transition: color 0.3s ease;
    color: #333;
}

.step-list li:hover {
    color: #517B39;
}

.step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #FAE605;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.step-list li:hover::before {
    background-color: #87BE41;
}

.card {
    border-radius: 10px;
    border: 2px solid #87BE41;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-header {
    background-color: #91C4EA;
    color: white;
    font-weight: bold;
    padding: 1rem;
    text-align: center;
}

.card-body p {
    font-size: 1.1rem;
}

.card-body ul {
    padding-left: 1.5rem;
}