html, body {
    overflow-x: hidden; /* Отключить горизонтальную прокрутку */
  }

.text-custom-blue {
    color: #0066ef;
}

.team-image {
    width: 250px;  /* Set a fixed width */
    height: 250px; /* Set a fixed height */
    object-fit: cover; /* Ensures the image scales while maintaining aspect ratio */
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Текст справа от логотипа */
.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Текст и слоган выровнены по левому краю */
}

.text-container .text-orange-500 {
    font-size: 26px; /* Размер текста "GBApps" */
    font-weight: bold;
}

.slogan-text {
    font-size: 11px; /* Размер текста для слогана */
    color: #ffffff; /* Цвет текста для "The best network solution." */
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
.logo-container {
    justify-content: space-between;
    width: 100%; /* Растягиваем контейнер по ширине на мобильных */
}

.text-container {
    align-items: flex-start; /* На мобильных текст будет также слева */
}

.text-container .text-orange-500 {
    font-size: 20px; /* Уменьшаем размер для "GBApps" на мобильных */
}

.slogan-text {
    font-size: 10px; /* Уменьшаем размер текста для слогана на мобильных */
}
}