body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 40px;
    margin: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-top: 8px solid #1b4332; /* Detalle elegante en la parte superior */
}

h1 {
    color: #1b4332;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.image-wrapper {
    text-align: center;
    margin: 30px 0;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    /* El marco profesional */
    padding: 10px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

p {
    text-align: justify;
    font-size: 1.1rem;
    color: #444;
}

p::first-letter {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d6a4f;
}