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

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    padding-top: 20px;
}

header {
    text-align: center;
    background-color: #003366;
    color: #fff;
    padding: 20px;
}

header img {
    width: 150px;
}

h1 {
    font-size: 2.5em;
}

.image-carousel {
    text-align: center;
    margin: 20px auto;
}

.carousel-images {
    width: 100%;
    max-width: 800px; /* Puedes ajustar esto según tus necesidades */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center; /* Centra las imágenes horizontalmente */
    align-items: center; /* Asegura que la imagen esté centrada verticalmente (si es necesario) */
}

.carousel-slide {
    width: 100%;
    display: none;
}

.carousel-slide img {
    max-width: 100%;  /* Asegura que la imagen se ajuste dentro del contenedor sin desbordarse */
    height: auto;     /* Mantiene la proporción original de la imagen */
}


.global-time {
    text-align: center;
    margin-top: 40px;
}

.clock-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
}

.clock {
    font-size: 1.2em;
    background-color: #003366;
    color: white;
    padding: 15px;
    border-radius: 8px;
    width: 120px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.clock p {
    font-size: 1.2em;
    margin: 10px 0;
}

.services {
    padding: 40px 20px;
    text-align: center;
}

.service-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-box {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    margin: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 1.1em;
    color: #666;
}

@media (max-width: 768px) {
    .service-box {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .service-box {
        width: 100%;
    }
}

.company-info {
    background-color: #f1f1f1;
    padding: 30px;
    text-align: left;
    max-width: 1200px;
    margin: 30px auto 0 auto;
    border-top: 4px solid #003366;
    border-bottom: 4px solid #003366;
}

footer {
    text-align: center;
    background-color: #003366;
    color: white;
    padding: 20px;
    margin-top: 50px;
}

