/* Estilos generales */
body {
    font-family: 'Arial', sans-serif; /* Fuente similar a la de la imagen */
    margin: 0;
    color: #333; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #fff;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 80px; 
}

h1 {
    margin: 0;
    color: #c00; 
    font-size: 2.5em; 
    font-weight: bold; /* Similar a la imagen */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-color: #f0f0f0; 
    position: relative;
    overflow: hidden;
    text-align: center; 
}

.hero .container {
    padding: 60px 20px; 
}

.hero-content {
    margin-bottom: 20px; 
}

.hero-content h2 {
    color: #c00;
    font-size: 3em; 
    margin-bottom: 20px; 
    font-weight: bold; /* Similar a la imagen */
}

.hero-image {
    /* Ajusta el ancho según tus necesidades */
    width: 80%; 
    margin: 0 auto; 
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
}

.red-bar {
    background-color: #c00;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translateX(-50%); 
    width: 0;
    animation: slideIn 2s ease-in-out forwards; 
}

@keyframes slideIn {
    to {
        width: 80%; 
    }
}

.btn {
    display: inline-block;
    background-color: #c00;
    color: #fff;
    padding: 12px 25px; 
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 40px 0;
}

.service-grid {
    display: flex;
    justify-content: space-around;
}

.service {
    text-align: center;
    width:
