body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    overflow-y: scroll;
}

.nav-link.active {
    color: #0ea5e9;
    font-weight: 700;
}

.content-section {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lb-data .lb-caption {
    color: #f1f5f9;
}

.lb-data .lb-number {
    color: #94a3b8;
}

.lb-image {
    transition: none !important;
}

.lb-loader {
    display: none !important;
}

.gallery-item {
    background-color: #e2e8f0;
    position: relative;
    transition: transform 0.2s;
    will-change: transform;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .skeleton {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.gallery-item .skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 1.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes shimmer {
    100% {
        left: 150%;
    }
}

.gallery-item img {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.gallery-item.is-loaded .skeleton {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.gallery-item.is-loaded img {
    opacity: 1;
}

.prose {
    color: #334155;
}

.prose h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.prose h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p,
.prose ul {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.prose ul {
    list-style-position: inside;
    list-style-type: disc;
    padding-left: 1rem;
}

.prose a {
    color: #0ea5e9;
    text-decoration: underline;
}

#header {
    background: #21283b;
}

a.nav-link,
nav a.logo {
    color: #fff;
    font-weight: 700;
    transition: all .2s;
}

a.nav-link:hover {
    background: #ffffff;
    color: #000;
}

a.nav-link {
    margin-left: 8px !important;
    padding: 8px 12px;
    border-radius: 20px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-section {
    padding: 80px 0;
    background-color: #fff;
}

.feature-section.alt {
    background-color: #f9f9f9;
}

.feature-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.feature-text {
    flex: 1;
    max-width: 45%;
}

.feature-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.feature-image {
    flex: 1;
    max-width: 50%;
}

.feature-image img {
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-text .cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    background-color: #121868;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-text .cta-button:hover {
    background-color: #ecd035;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.flex_align_justify {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_align {
    display: flex;
    align-items: center;
}

.wrapper {
    min-height: 100vh;
    padding: 0 20px;
}

.terms_service {
    max-width: 50%;
    height: 65%;
    background: var(--white);
    border-radius: 3px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.terms_service .tc_item {
    padding: 20px 40px;
}

.terms_service .tc_head {
    color: white;
    background-color: #334155;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    height: 90px;
}

.terms_service .tc_head .icon {
    width: 50px;
    height: 50px;
    background: var(--bg-clr);
    margin-right: 20px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
}

.terms_service .tc_body {
    height: calc(100% - 170px);
    overflow: auto;
    padding-right: 20px;
}

.terms_service .tc_body ol li {
    margin-bottom: 15px;
}

.terms_service .tc_body ol li h3 {
    font-weight: bold;
    margin-bottom: 5px;
}

@keyframes fill-progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.animate-progress {
    animation: fill-progress linear forwards;
}

@media (max-width: 768px) {
    .feature-section {
        padding: 60px 0;
    }

    .feature-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .feature-text,
    .feature-image {
        max-width: 100%;
    }

    .feature-text h2 {
        font-size: 2.2rem;
    }

    .feature-section.alt .feature-content {
        flex-direction: column-reverse;
    }
}