body {
    line-height: 1.2;
}

.container {
    margin-top: 32px;
    margin-bottom: 32px;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-links {
    display: flex;
    gap: 48px;
}

.navbar-links a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.navbar-links a:hover {
    text-decoration: underline;
}

.banner {
    width: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: start;
    border-radius: 20px;
}

.header-banner {
    min-height: 496px;
    background: url('../landing/header-bg.svg') center / cover no-repeat;
}

.company-banner {
    min-height: 300px;
    background: url('../landing/datago-banner-bg.svg') center / cover no-repeat;
}

.header-banner-content {
    margin-top: auto;
}

.banner-title {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
}

.header-banner-title {
    font-size: 44px;
    margin-bottom: 24px;
}

.banner-text {
    color: #fff;
    font-size: 18px;
}

.header-banner-text {
    font-size: 26px;
}

.company-banner-text {
    line-height: 1.4;
    margin-bottom: 32px;
}

section {
    margin: 62px 0;
}

.section-title {
    font-size: 32px;
    color: #28369D;
    font-weight: 400;
    margin-bottom: 12px;
}

.section-text {
    font-size: 18px;
    color: #7B7B7B;
    margin-bottom: 32px;
}

.footer-text {
    color: #28369D;
    line-height: 1.4;
}

.footer-darken-text {
    color: #7B7B7B;
}

hr {
    border-color: #E6E6E6;
}

.web-streaming-link {
    height: 200px;
    position: relative;
    background: #E6E6E6;
    margin-right: -1px;
    z-index: 1;
    overflow: hidden;
    padding: 24px;
}

.web-streaming-link:before {
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 1px;
    background: #fff;
    z-index: 1;
}

.web-streaming-link:hover {
    background: linear-gradient(90deg, #28369D 0%, #36B5CF 48.76%, #72DF58 93.66%);
    z-index: 2;
}

.web-streaming-link a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}


.web-streaming-link img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    bottom: -50px;
    right: 0px;
}

.web-streaming-link-title {
    position: relative;
    z-index: 3;
    font-size: 24px;
    color: #28369D;
    width: 100%;
}

.web-streaming-link-title:after {
    content: '';
    display: block;
    width: 17px;
    height: 17px;
    background: url('../landing/arrow.svg') center / contain no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.card-item img {
    width: 100%;
    max-width: 24px;
    max-height: 100%;
    margin-bottom: 4px;
}

.card-title {
    font-size: 20px;
    text-decoration: none;
    color: #28369D;
    margin-bottom: 12px;
}

.card-title:hover {
    text-decoration: underline;
}

.card-text {
    font-size: 16px;
    color: #7B7B7B;
}

.box-item {
    padding: 24px;
    position: relative;
    background: linear-gradient(90deg, #36B5CF 0%, #72DF58 100%);
    margin-right: -1px;
}

.box-item:before {
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: absolute;
    top: 1px;
    left: 1px;
    background: #fff;
    z-index: 1;
}

.box-item-title,
.box-item-text {
    position: relative;
    z-index: 1;
}

.box-item-title {
    font-size: 20px;
    color: #28369D;
    margin-bottom: 12px;
}

.box-item-text {
    font-size: 16px;
    color: #7B7B7B;
}

.tab-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tab-links a {
    position: relative;
    flex: 1 1 auto;
    background: #EFF4F7;
    color: #28369D;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    padding: 14px 30px;
}

.tab-links a:hover {
    background: #28369D;
    color: #fff;
}

.tab-links a:after {
    content: '';
    display: block;
    width: 17px;
    height: 17px;
    background: url('../landing/arrow.svg') center / contain no-repeat;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.tab-links a:hover:after {
    background-image: url('../landing/arrow-white.svg');
}

.btn-primary,
.btn-outline-primary:hover {
    background: #28369D;
    border-color: #28369D;
}

.btn-outline-primary {
    border-color: #28369D;
    color: #28369D;
}

.flex {
    display: flex;
    flex-direction: column;
}

.search-container {
    width: 700px;
    position: relative;
}

#search-input {
    width: 100%;
    font-size: 16px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#search-input:focus {
    outline: none;
}

.search-results {
    position: absolute;
    top: 45px;
    width: 676px;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    z-index: 1000;
}

.search-results div {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    color: #28369D;
    cursor: pointer;
}

.search-results div:hover {
    background-color: #f8f8f8;
}

.search-results a {
    color: #28369D;
    text-decoration: none;
}

.search-results a:hover {
    text-decoration: underline;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 767px) {
    .banner {
        padding: 24px;
    }

    .navbar {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }

    .navbar-links {
        gap: 12px;
    }

    .navbar-links a {
        font-size: 14px;
    }

    .header-banner {
        min-height: auto;
    }

    .header-banner-title {
        font-size: 26px;
    }

    .header-banner-text {
        font-size: 18px;
    }

    .card-item {
        margin-bottom: 24px;
    }

    .box-item,
    .web-streaming-link {
        margin-right: 0;
        margin-bottom: -1px;
    }

    .tab-links {
        flex-direction: column;
    }
    .tab-links a {
        width: 100%;
    }
}