body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: #A2A75E;
    color: #FFF;
    text-align: center;
    padding: 5px 0;
}

.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 50px;
    margin-right: 20px;
}

nav {
    background-color: #E8E9E9;
    position: relative;
}

nav .menu-icon {
    display: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    text-decoration: none;
    color: #A2A75E;
	font-weight: bolder;
}

section {
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    text-align: center;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.cta-button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
	font-weight: bolder;
	cursor: pointer;
}

.cta-button:hover {
    background-color: #218838;
}

#reservationForm input{
	padding: 5px;
}

/* Estilos para secciones de servicios y tarifas */
#servicios, #tarifas, #reserva, #contacto, #nosotros {
    padding: 20px;
    margin: 20px auto;
    max-width: 1000px;
}

#reserva{
	background-color: #F9F9F9;
}

#servicios h2, #tarifas h2, #reserva h2, #contacto h2, #nosotros h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #A5BB67;
}

.servicio, .tarifas, .descuentos {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.servicio h3, .tarifas h3, .descuentos h3 {
    color: #333;
}

.servicio ul, .tarifas ul, .descuentos ul {
    list-style-type: disc;
    margin-left: 20px;
}

.servicio p, .tarifas p, .descuentos p {
    margin: 10px 0;
}

#formulario-reserva{
	display: flex;
    flex-direction: column;
    align-items: center;
}

form input[type="text"] {
	width: 100%;
}

.section-img {
	max-width: 800px;
	width: 90%;
	position: relative;
	display: block;
	margin: 20px auto;
	border-radius: 50px;
}
.section-img:hover, .img-nosotros img:hover {
	opacity: 0.8;
}

.img-nosotros {
	display: flex;
    justify-content: center;
	gap: 6%;
}

.img-nosotros img {
	width: 45%;
	border-radius: 10px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }

    nav .menu-icon {
        display: block;
    }
	form input[type="text"] {
		width: 90%;
	}
	.cta-reserva{
		margin: 10px 0;
	}
}
