body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #f6cd17;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 220px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h1 {
    font-size: 3em;
    margin: 10px;
}

.subtitle {
    font-size: 1.2em;
}

.cta-button, .cta-button-secondary, .cta-button-small {
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin: 5px;
    display: inline-block;
}

.cta-button {
    background-color: #25d366;
}

.cta-button-secondary {
    background-color: #555;
}

.cta-button-small {
    background-color: #f6cd17;
    color: #333;
}

.hero {
    padding: 50px 20px;
}

.section-video {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 10%;
    background: #f9f9f9;
}

.video-container video {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

section {
    padding: 40px 15%;
}

h2 {
    font-size: 2em;
}

.servicios-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}

.servicio-item {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

    .servicio-item a {
        color: #333;
        font-weight: bold;
    }

.section-beneficios ul {
    padding: 0;
    list-style: none;
}

.section-beneficios li {
    padding: 8px;
    font-size: 1.1em;
}

#contacto form input, #contacto form button {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
    border: 1px solid #ccc;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px;
}

    footer a {
        color: #f6cd17;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

@media(max-width:768px) {
    .logo {
        width: 180px;
    }

    h1 {
        font-size: 2em;
    }

    section {
        padding: 20px;
    }
}
