body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #4541BF;
}

a:hover {
    color: #333;
}

/*---------------------------------------------------*/
.header, .navbar {
    background-color: #353273 !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand, 
.header .navbar-nav .nav-link,
.header .navbar-nav .nav-link:hover,
.header .logo {
    color: #fff !important;
}

.header .navbar-nav .nav-link:hover {
    color: #ddd !important;
}

.header .navbar-nav {
    margin-right: 0;
}

.header .logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    left: 20px;
}

.header .logo img,
.logo-img {
    height: 75px;
    width: auto;
    margin-right: 10px;
}

.logo-img {
    height: 50px;
    margin-left: 10px;
}

.navbar-brand {
    padding: 5px 15px;
}

.navbar-nav {
    margin-right: 0;
}

.navbar-nav .dropdown-menu {
    background-color: #353273;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar-nav .dropdown-menu li a {
    color: #fff !important;
    padding: 10px 20px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.navbar-nav .dropdown-menu li a:hover {
    background-color: #4541BF;
}

.navbar-nav .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .dropdown-menu li:last-child {
    border-bottom: none;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 767px) {
    .navbar-collapse {
        background-color: #353273;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .navbar-nav .dropdown-menu {
        background-color: transparent;
        box-shadow: none;
        position: static;
        float: none;
        width: auto;
        margin-left: 20px;
        border: none;
    }
    
    .navbar-nav .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .navbar-nav .dropdown-menu li {
        border-bottom: none;
    }
}
/*---------------------------------------------------*/

#cableado {
    padding-top: 120px !important; 
    background-color: #fff !important; 
    color: #333 !important;
    text-align: center;
    padding-bottom: 60px !important;
}

#cableado .service-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #4541BF !important;
}

#cableado .sub-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

#cableado hr.bottom-line {
    border: 0;
    height: 2px;
    background: #4541BF;
    width: 100px;
    margin: 20px auto;
}

#cableado h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4541BF;
    margin-bottom: 15px;
}

#cableado p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

#cableado ul {
    list-style: none;
    padding: 0;
}

#cableado ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

#cableado ul li::before {
    content: "▹";
    color: #4541BF;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}

#cableado img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#cableado img:hover {
    transform: scale(1.05);
}

#cableado .btn-contact {
    background-color: #4541BF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#cableado .btn-contact:hover {
    background-color: #353273;
    text-decoration: none;
    color: #fff;
}

/*---------------------------------------------------*/

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}