* {
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo img {
    /* Espacio para logotipo (100px x 100px) */
    display: block;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 10px;
    background-color: #e8f0fe;
}

.hero img {
    /* Espacio para imagen destacada (1000px x 500px) */
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.0rem;
    margin-bottom: 10px;
}

#services {
    padding: 10px;
    background-color: white;
    text-align: center;
}

#services h2 {
    font-size: 1.5 rem;
    margin-bottom: 30px;
}

.service-item {
    display: inline-block;
    margin: 20px;
    width: 400px;
}

.service-item img {
    /* Espacio para imagen de servicios (400px x 250px) */
    width: 100%;
    margin-bottom: 1Opx;
}

#about {
    padding: 10px;
    background-color: #f9f9f9;
    text-align: center;
}

#about h2 {
    font-size: 1.0 rem;
    margin-bottom: 10px;
}

#about p {
    font-size: 1.0 rem;
    margin-bottom: 10px;
}

#about img {
    /* Espacio para imagen del equipo o la oficina (400px x 170px) */
    width: 100%;
}

footer {
    padding: 10px;
    background-color: #333;
    color: white;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

.social-media {
    margin-bottom: 10px;
}

.social-media a {
    margin: 0 10px;
    text-decoration: none;
}

.social-media img {
    /* Espacio para logos de redes sociales (30px x 30px) */
    display: inline-block;
    width: 60px;
    height: 60px;
}
