/* Main Container */
.containers {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: white;
}

/* Titles and Headings */
h1, h2, h4 {
    color: #cedc00;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 3px solid #cedc00;
    padding-bottom: 10px;
    text-align: center;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0f0f0f;
}

/* Paragraphs and Text */
p {
    text-align: justify;
    font-size: 1rem;
    color: #252525;
    margin-bottom: 15px;
}

/* Lists */
ul {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    text-align: justify;
}

ul li {
    color: #333;
    margin-bottom: 10px;
}

ul li strong {
    color: #000000;
}

ol {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    text-align: justify;
}

/* Sections */
section {
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra superior y en el resto */
    border-left: 5px solid #cedc00;
}

/* Strong Text */
strong {
    font-weight: bold;
    color: #cedc00;
}

/* Animations (AOS) */
[data-aos] {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}
