/* REUTILIZANDO TU ESTILO BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0f4f8; /* El mismo fondo de tu página principal */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Quicksand', sans-serif; /* Usando una de tus fuentes importadas */
    color: #2E2E2E;
}

h1 {
    color: #D4AF37; /* Tu dorado */
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.5rem;
}

/* ESTILO PARA LOS BLOQUES DE TEXTO */
h3 {
    color: #D4AF37; /* Dorado suave */
    font-family: 'Playfair Display', serif;
    margin-top: 30px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 600px;
}

p {
    background-color: #FAFAF7; /* El fondo de tus cajas de citas */
    border-left: 4px solid #c9a86a; /* Un detalle elegante a la izquierda */
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* POR SI DECIDES PONER EL BOTÓN DE VOLVER QUE DIJIMOS */
.volver {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #2E2E2E;
    color: #FFFFFF;
    border: 2px solid #c9a86a;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    transition: 0.3s;
}

.volver:hover {
    background-color: #3A3A3A;
    transform: translateY(-2px);
}