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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.breadcrumb-wrapper {
    background-color: #4A90E2;
    color: white;
    padding: 120px 0;
}

.page-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-heading h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.breadcrumb-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font-size: 0.9rem;
}

.breadcrumb-items li {
    margin-left: 5px;
}

.breadcrumb-items a {
    color: white;
    opacity: 0.8;
}


.breadcrumb-items li i {
    font-style: normal;
    margin: 0 5px;
}

.service-page {
    padding: 40px 0;
}

.service-details__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-top: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -30px;
}

.gutter-y-30 {
    padding-bottom: 30px;
}

.col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .col-xl-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.service-page__item {
    background-color: white;
    border: 1px solid #e0eeef;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 20px;
}

.service-page__item:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-page__item__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-page__item__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #007bff;
    margin: 0;
}

.service-page__item__icon {
    font-size: 2rem;
    color: #a4c0db;
    line-height: 1;
}

.icon-wifi-router::before {
    content: "📡";
    display: block;
    line-height: 1;
}

.service-page__item__icon {
    color: #4A90E2;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out;

}

#preloader h1 {
    color: #4A90E2;
    font-family: sans-serif;
    margin-top: 10px;
}

#preloader img {
    width: 100px;
    height: 100px;
}

#content {
    display: none;
}