/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f8fa;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #00bfa5, #1e88e5);
    color: white;
    text-align: center;
    padding: 2em 1em;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

header p {
    font-size: 1.2em;
}

.intro {
    text-align: center;
    margin: 2em 0;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 1em;
}

.resource-link {
    padding: 0.8em 1.5em;
    background-color: #1e88e5;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.resource-link:hover {
    background-color: #00bfa5;
}

.details {
    width: 80%;
    max-width: 900px;
    margin: 2em auto;
    padding: 1em;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.details h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #1e88e5;
    text-align: center;
}

.subsection {
    margin-top: 2em;
}

.subsection h3 {
    font-size: 1.5em;
    color: #00bfa5;
    margin-bottom: 0.5em;
}

.subsection p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

.subsection img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 1em;
    background-color: #1e88e5;
    color: white;
    margin-top: 2em;
    font-size: 0.9em;
}
