html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
    color: #0f172a;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00b4d8;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    height: max-content;
}

.legal-nav-link {
    display: block;
    padding: 10px 16px;
    color: #64748b;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.legal-nav-link:hover {
    background-color: #f0f9ff;
    color: #00b4d8;
}

.legal-nav-link.active {
    background-color: #e0f2fe;
    color: #0284c7;
    font-weight: 900;
    border-right: 4px solid #0284c7;
}

.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 24px;
}
.faq-content.open {
    max-height: 500px;
    opacity: 1;
    padding: 16px 24px 24px 24px;
}

.corporate-shadow {
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.08);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to left, #00b4d8, #0284c7);
}

/* Tech Card Hover Effect */
.tech-card:hover {
    transform: translateY(-5px);
    border-color: #00b4d8;
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.1);
}

.step-arrow {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    color: #bae6fd;
    z-index: 0;
}
@media (max-width: 768px) {
    .step-arrow {
        display: none;
    }
}