body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px; 
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1 {
    font-size: 2.8rem; 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.3rem; 
    font-weight: 600;
    line-height: 1.3;
    margin: 2rem 0 1rem;
    color: #af4ca5;
}

h3 {
    font-size: 1.7rem; 
    font-weight: 500;
    line-height: 1.4;
    margin: 1.5rem 0 0.8rem;
    font-style: italic; 
}

p {
    font-size: 1.2rem; 
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

ul, ol {
    font-size: 1.2rem; 
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

table {
    font-size: 1.1rem;
    line-height: 1.5;
}

th {
    font-weight: 600;
}

/* Texto especial */
strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

mark {
    font-weight: 500;
    padding: 0.1em 0.3em;
}

/* Selectores específicos para los títulos que deben estar en cursiva */
#introduccion h3, /* Características botánicas */
#historia h3, /* Expansión mundial */
#cuidados h3, /* Plantación, Mantenimiento, Problemas comunes */
#simbolismo h3, /* En la cultura */
#galeria h3, /* Variedades destacadas */
#video h3, /* Festivales de tulipanes */
#tabla h3, /* Clasificación según época de floración */
#contacto h3 /* Datos curiosos finales */ {
    font-style: italic;
}

header {
    background-color: #a24caf;
    color: white;
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container img {
    height: 100px;
}

.nav-container ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-container ul li {
    margin: 0 15px;
}

.nav-container ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem; 
    font-weight: 500;
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-container {
    margin-bottom: 40px;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.imagen {
    width: 200px;
    height: auto;
    border-radius: 10px;
}

.imagent{
    width: 234px;
}

.image-container img {
    border-radius: 10px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #9e4caf;
    color: white;
}

.form-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
}

button {
    background-color: #ad4caf;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem; 
}

.video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

button:hover {
    background-color: #9b45a0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 1.1rem; 
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}