/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tipografía */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #0d5a1c;
}

/* Navegación */
nav {
    display: flex;
    justify-content: flex-end;
    background-color: #4caf50;
    padding: 1rem;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 1rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
}

/* Hero */
.hero {
    background-image: url('hero.jpg');
    background-position: center;
    background-size: cover;
    height: 73vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    background-color: rgba(0, 0, 0, 70%);
    padding: 1rem;
    border-radius: 0.5rem;
}

.hero-content h1, .hero-content p {
    color: #ffffff;
}

.btn-call {
    background-color: rgb(69 205 75);
    color: white;
    font-size: 23px;
    font-weight: 700;
    border-radius: 18px;
    border: 0;
    padding: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}


/* Sección Servicios */
#services {
    padding: 2rem;
    background-color: #e8f5e9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1rem;
}

.service-card {
    text-align: center;
    padding: 1rem;
    background-color: #c8e6c9;
    border-radius: 0.5rem;
}

.service-card img {
    max-width: 100%;
    height: auto;
}

/* Sección À propos */
#about {
    padding: 2rem;
}

.about-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.about-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

/* Sección FAQ */
#faq {
    padding: 2rem;
    background-color: #e8f5e9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1rem;
}

.faq-card {
    text-align: center;
    padding: 1rem;
    background-color: #c8e6c9;
    border-radius: 0.5rem;
}

/* Contact */
#contact {
    padding: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    
    .contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    }
    
    .contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.25rem;
    }
    
    .contact-form textarea {
    height: 100px;
    resize: none;
    }
    
    .contact-form input[type="submit"] {
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    text-transform: uppercase;
    }
    
    .contact-info {
    text-align: center;
    margin-top: 1rem;
    }
    
    /* Footer */
    footer {
    background-color: #4caf50;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    }
    
    /* Estilos para dispositivos móviles */
    @media screen and (max-width: 768px) {
    .about-content {
    flex-direction: column;
    }
}