* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {font-family: Arial, sans-serif;}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: black;
    width: 100%;
    padding: 20px 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
    display: flex;
    align-items: center;
}
.hamburger {
    display: none;
    font-size: 24px;
    margin-right: 20px;
    cursor: pointer;
}
.nav-links {display: none; /* Ocultar por defecto */}
.nav-links ul {list-style: none;}
.nav-links ul li {margin: 10px 0;}
.nav-links ul li a {
    text-decoration: none;
    color: black;
}




.blog-section {
    max-width: 700px;
    margin: auto;
    position: relative;
    top: 20px;
}
h1{text-align: center;}
.main-image {
    width: 700px;
    height: 340px;
}
p{margin: 20px 0;}
.image-text-left, .image-text-right {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.image-text-left .text-content, .image-text-right .text-content {margin-left: 20px;}
.image-text-right {flex-direction: row-reverse;}
.side-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
}
/* Acordeon Preguntas */
.accordion {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
}
.accordion-item {
    background-color: #fff;
    color: #111;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.25);
}
.accordion-item-header {
    padding: 0.5rem 3rem 0.5rem 1rem;
    min-height: 3.5rem;
    line-height: 1.25rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.accordion-item-header::after {
    content: "\002B";
    font-size: 2rem;
    position: absolute;
    right: 1rem;
}
.accordion-item-header.active::after {content: "\2212";}
.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}
/* Estilos para pantallas pequeñas */
@media (min-width: 768px) {
    .nav-links {display: flex; /* Mostrar en pantallas grandes */}
    .nav-links ul {
        display: flex;
        gap: 20px;
    }
    .nav-links ul li {margin: 0;}
}

@media (max-width: 767px) {
    header{padding: 20px 20px;}
    .image-text-left, .image-text-right {
        flex-direction: column;
        align-items: flex-start;
    }
    .image-text-left .text-content, .image-text-right .text-content {
        margin-left: 0;
        margin-top: 10px;
    }
    .hamburger{display: block;}
    .nav-links.active {
        display: block; /* Mostrar menú en pantallas pequeñas */
        position: absolute;
        padding: 10px;
        top: 75px; /* Ajustar según el tamaño del header */
        left: 0;
                    transition: all 2s ease;
            overflow-y: scroll;
            overflow: -moz-scrollbars-vertical;
        height: 100vh;
        width: 100%;
        background-color: #f1f1f1;
        z-index: 1000;
    }
    .nav-links ul li{padding: 10px;}
}