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

header {
    background-color: #EC5424;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo {
    height: 60px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
}

nav a:hover {
    color: #353942;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(53,57,66,0.6);
    padding: 20px;
    border-radius: 8px;
}

section {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #EC5424;
}

.mision-vision {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.mision-vision div {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    flex: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

.servicios li {
    background-color: white;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    border-left: 5px solid #EC5424;
}

footer {
    background-color: #353942;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
