* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.logo {
    width: 400px;
    margin-bottom: 1rem;
}

.header-content h1 {
    font-size: 2.5rem;
    color: #333;
}

.subtitle {
    color: #F39C12;
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 1rem;
}

section#about {
    background-color: white;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

section#about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

section#about p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

section#services {
    padding: 2rem 0;
    text-align: center;
}

#services .service-card {
    display: inline-block;
    width: 30%;
    margin: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#services .service-card h3 {
    color: #F39C12;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#services .service-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

#services .service-card button {
    padding: 0.5rem 1rem;
    background-color: #F39C12;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#services i {
    color: #F39C12;
    margin-bottom: 1rem;
}

/* Estilos para la sección de contacto */
section#contact {
    padding: 2rem;
    text-align: left;
    background-color: white;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

#contact .contact-list {
    list-style-type: none;
}

#contact .contact-list li {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #F39C12;
}

footer {
    background-color: white;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}
/* Estilos para los botones */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre los botones */
}

.button-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #F39C12;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-link i {
    margin-right: 8px;
    font-size: 1.5rem;
}

/* Hover para cambiar el color al pasar el mouse */
.button-link:hover {
    background-color: #D35400;
}

/* Estilos específicos para WhatsApp e Instagram */
.button-link i.fab.fa-whatsapp {
    color: #25D366; /* Color de WhatsApp */
}

.button-link i.fab.fa-instagram {
    color: #C13584; /* Color de Instagram */
}