/* Estilos de la sección de telecomunicaciones */
.telecom-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 20px;
    background-color: #f5f5f5;
    gap: 20px;
}

/* Contenido del texto */
.telecom-content {
    max-width: 500px;
    color: #641319;
    margin-right: 50px;
}

.telecom-content, .telecom-image {
    margin-left: 50px;
}

.telecom-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #641319;
    margin-bottom: 20px;
}

.telecom-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.telecom-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.telecom-content li {
    font-size: 1.1rem;
    color: #555;
}

/* Imagen */
.telecom-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsividad */
@media (max-width: 768px) {
    .telecom-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .telecom-content, .telecom-image {
        max-width: 100%;
    }
}
