#marketing {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-family: Bahnschrift, 'DIN Alternate', 'Franklin Gothic Medium', 'Nimbus Sans Narrow', sans-serif-condensed, sans-serif;
    font-family: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    nav {
        /* box-shadow: 0 2px 8px var(--shadow); */
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1000;
        background: transparent;
        background-color: rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        padding: 20px 0;
        &.scrolled {
            padding: 0;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
        }
    }
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 0 20px;
        &>a {
            width: 240px;
            height: 50px;
            padding: 10px 20px;
            margin-left: -20px;
            display: flex;
            box-sizing: border-box;
        }
    }
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
    }
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 1rem;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    .nav-item {
        position: relative;
        margin-bottom: 0;
        a,
        span {
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 1rem;
            border-bottom: 2px solid transparent;
            transition: border-bottom 0.1s ease;
            &:hover {
                border-bottom: 2px solid white;
                color: white;
            }
        }
        .button {
            padding: 8px 15px 5px;
            &.avatar {
                padding: 7px 8px;
                border-radius: 200px;
            }
            &:hover {
                border-bottom: 2px solid transparent !important;
            }
        }
        .button-secondary {
            background-color: var(--secondary);
            &:hover {
                background-color: var(--secondary-dark);
            }
        }
    }
    .nav-link {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        display: block;
        padding: 0 0.5rem;
    }
    .nav-link:hover {
        color: var(--primary);
    }
    .dropdown {
        position: relative;
    }
    .dropdown-toggle {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        &:hover {
            border-bottom: 2px solid transparent !important;
        }
    }
    .dropdown-toggle::after {
        content: '▼';
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 280px;
        box-shadow: 0 8px 24px var(--shadow);
        border-radius: 8px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        a {
            text-transform: none;
            letter-spacing: 0;
            font-size: 1.2rem;
        }
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown-menu a {
        display: block;
        padding: 0.75rem 1.5rem;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 0.9rem;
        transition: background 0.2s ease;
    }
    .dropdown-menu a:hover {
        background: #f8fafc;
        color: var(--primary);
    }
    .nav-cta {
        background: var(--primary);
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: background 0.3s ease;
    }
    .nav-cta:hover {
        background: var(--primary-dark);
    }
    .angle-border {
        position: relative;
        font-size: 0;

        &:before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            /* background-color: var(--primary); */
            background: radial-gradient(90% 90% at 5% 80%, var(--primary) 0, rgba(255, 255, 255, 0) 100%), radial-gradient(90% 90% at 5% 5%, var(--primary-dark) 0, rgba(255, 255, 255, 0) 100%), linear-gradient(to bottom left, var(--secondary), var(--secondary-dark));
            background-size: 200% 200%;
            /* transform: rotate(2deg); */
            z-index: -1;
            border-radius: 6px;
        }
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    header {
        /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); */
        color: white;
        padding: 0px 0 200px;
        /* margin-bottom: -200px; */
        text-align: center;
        position: relative;
        background-color: black;
        .background-video {
            z-index: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.5;
            video {
                filter: blur(4px);
                background-image: url("/assets/bg_image-fa156964.jpg");
                background-color: #010509;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                position: absolute;
                top: -5px;
                left: -5px;
                right: -5px;
                bottom: -5px;
                object-fit: cover;
                width: calc(100% + 10px);
                height: calc(100% + 10px);
                min-width: calc(100% + 10px);
                min-height: calc(100% + 10px);
            }
        }
        .container {
            z-index: 1;
            position: relative;
            padding-top: 200px;
        }
    }
    h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        letter-spacing: -1px;
    }
    h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }
    h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--secondary-light);
    }
    .subtitle {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
        color: white;
        text-wrap: balance;
        line-height: 1.2;
        em {
            color: var(--secondary-light);
        }
    }
    .tagline {
        font-size: 1.75rem;
        margin-bottom: 3rem;
        opacity: 0.9;
    }
    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .btn-primary {
        background: white;
        color: var(--primary);
    }
    .btn-primary:hover {
        /* transform: translateY(-2px); */
        box-shadow: 0 10px 25px var(--shadow);
    }
    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }
    .btn-secondary:hover {
        background: white;
        color: var(--primary);
    }
    section {
        padding: 80px 0;
    }
    .section-alt {
        background: linear-gradient(to bottom, #f8fafc 0%, #e0e7ff 100%);
    }
    .section-alt-secondary {
        background: var(--secondary);
        color: white;
    }
    .section-alt-primary {
        background: var(--primary);
        color: white;
        padding: 0;
        /* .container {
    padding-right: 0;
    } */
        .why-dataqwik-image {
            width: 100%;
            height: 100%;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }
    .section-alt-primary,
    .section-alt-secondary {
        h2 {
            color: white;
        }
        .feature {
            background-color: var(--primary-dark);
            border-radius: 12px;
        }
        .feature h4,
        .feature p {
            color: white;
        }
    }
    .section-content {
        /* max-width: 900px; */
        margin: 0 auto;
        /* text-align: center; */
    }
    .section-content p {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: var(--text-light);
    }
    .industries-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    .industry-card {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px var(--shadow);
        transition: all 0.3s ease;
        position: relative;
        img {
            position: absolute;
            right: 20px;
            width: 150px;
            height: auto;
            opacity: .1;
            top: 30px;
            pointer-events: none;
        }
    }
    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px var(--shadow);
    }
    .industry-card h4 {
        font-size: 1.3rem;
        color: var(--primary);
        margin-bottom: 0.75rem;
    }
    .industry-card p {
        color: var(--text-light);
        font-size: 1rem;
        text-align: left;
    }
    .how-it-works {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    .step {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px var(--shadow);
    }
    .step-number {
        display: inline-block;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        border-radius: 50%;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 50px;
        margin-bottom: 1rem;
    }
    .step h4 {
        font-size: 1.2rem;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }
    .step p {
        color: var(--text-light);
        font-size: 0.95rem;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    .feature {
        text-align: center;
        padding: 2rem;
    }
    .feature h4 {
        font-size: 1.3rem;
        color: var(--primary);
        margin-bottom: 0.75rem;
    }
    .feature p {
        color: var(--text-light);
        font-size: 1rem;
    }
    /* Why DataQwik Section - Vertical Layout */
    .why-dataqwik-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .why-dataqwik-text {
        text-align: left;
        margin-top: 4rem;
        margin-bottom: 4rem;
        h4 {
            margin-bottom: 0 !important;
        }
        p {
            opacity: 0.7;
            line-height: 1.2 !important;
        }
    }
    .why-dataqwik-text h2 {
        text-align: left;
        margin-bottom: 2.5rem;
    }
    .reasons-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .reason-item {
        text-align: left;
    }
    .reason-item h4 {
        font-size: 1.4rem;
        color: white;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    .reason-item p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 0;
    }
    .why-dataqwik-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .why-dataqwik-image img {
        max-width: 100%;
        height: auto;
        opacity: 0.9;
    }
    /* Healthcare Hero Section */
    .healthcare-hero {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        color: white;
        padding: 100px 0;
        text-align: left;
    }
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .hero-text {
        text-align: left;
    }
    .hero-icon {
        margin-bottom: 1.5rem;
    }
    .healthcare-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
    }
    .healthcare-hero h2.subtitle {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-light);
        font-weight: 500;
    }
    .healthcare-hero p.tagline {
        font-size: 1.2rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-visual {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    /* Utility classes for content sections */
    .flex {
        display: flex;
    }
    .flex-1 {
        flex: 1;
    }
    .flex-none {
        flex: none;
    }
    .gap-15 {
        gap: 3rem;
    }
    .w-full {
        width: 100%;
    }
    .h-auto {
        height: auto;
    }
    ul {
        list-style-type: disc;
        margin-left: 1.5rem;
        margin-bottom: 1.5rem;
    }
    li {
        margin-bottom: 0.5rem;
        color: var(--text-light);
    }
    .testimonials {
        background: white;
        padding: 80px 0;
    }
    .testimonial {
        background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
        padding: 2.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
        border-left: 5px solid var(--primary);
    }
    .testimonial blockquote {
        font-size: 1.2rem;
        font-style: italic;
        color: var(--text-dark);
        margin-bottom: 1rem;
        line-height: 1.7;
    }
    .testimonial-author {
        font-weight: 600;
        color: var(--primary);
        font-size: 1rem;
    }
    .faq {
        background: #f8fafc;
        padding: 80px 0;
    }
    .faq-item {
        background: white;
        padding: 2rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px var(--shadow);
    }
    .faq-item h4 {
        font-size: 1.2rem;
        color: var(--primary);
        margin-bottom: 0.75rem;
    }
    .faq-item p {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    .cta-section {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        color: white;
        padding: 100px 0;
        text-align: center;
    }
    .cta-section h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    footer {
        background: #1f2937;
        color: #9ca3af;
        padding: 40px 0;
    }
    .footer-content {
        text-align: center;
    }
    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    .footer-links a {
        color: #d1d5db;
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s ease;
    }
    .footer-links a:hover {
        color: var(--primary);
    }
    .footer-copyright {
        font-size: 0.9rem;
        color: var(--text-lighter);
    }
    @media (max-width: 1024px) {
        .how-it-works {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 2rem;
        }
        .subtitle {
            font-size: 1.2rem;
        }
        .tagline {
            font-size: 1.1rem;
        }
        .industries-grid,
        .how-it-works,
        .features-grid {
            grid-template-columns: 1fr;
        }
        .footer-links {
            flex-direction: column;
            gap: 1rem;
        }
        .nav-menu {
            display: none;
        }
        /* Mobile responsive for Why DataQwik section */
        .why-dataqwik-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .why-dataqwik-text {
            text-align: center;
        }
        .why-dataqwik-text h2 {
            text-align: center;
        }
        .reasons-list {
            gap: 1.5rem;
        }
        .reason-item h4 {
            font-size: 1.2rem;
        }
        .reason-item p {
            font-size: 1rem;
        }
        /* Mobile responsive for Healthcare Hero */
        .hero-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        .hero-text {
            text-align: center;
        }
        .healthcare-hero h1 {
            font-size: 2.5rem;
        }
        .healthcare-hero h2.subtitle {
            font-size: 1.4rem;
        }
        .healthcare-hero p.tagline {
            font-size: 1.1rem;
        }
        /* About Page Mobile Responsive */
        .hero-title {
            font-size: 2.5rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
        }
        .hero-description {
            font-size: 1.1rem;
        }
        .mission-content h2 {
            font-size: 2.5rem;
        }
        .mission-text {
            font-size: 1.2rem;
        }
        .story-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .values-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .founders-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .future-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .section-title {
            font-size: 2.5rem;
        }
        /* Contact Page Mobile Responsive */
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .demo-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .faq-grid {
            grid-template-columns: 1fr;
        }
        .forms-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        /* FAQ Page Mobile Responsive */
        .category-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .category-header {
            flex-direction: column;
            text-align: center;
        }
        .category-header .category-icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }
        .category-header h2 {
            font-size: 2rem;
        }
        .faq-grid {
            grid-template-columns: 1fr;
        }
        .faq-item {
            padding: 1.5rem;
        }
        /* Compliance Page Mobile Responsive */
        .regulatory-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        .security-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .compliance-badges {
            justify-content: center;
        }
    }
}

@keyframes border-gradient {
    0% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.angle-border:before {
    animation: border-gradient 5s alternate infinite;
}


/* About Page Styles */

.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--secondary-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.mission-section {
    padding: 100px 0;
    background: white;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.mission-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-section {
    padding: 100px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.quote-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
    margin: 2rem 0;
    padding: 1rem;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
}

.founder-quote {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.values-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 0.5rem;
}

.why-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.why-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.founders-section {
    padding: 100px 0;
    background: white;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.founder-card {
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-image {
    margin-bottom: 1.5rem;
}

.founder-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.future-section {
    padding: 100px 0;
    background: #f8fafc;
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.future-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.future-intro {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.future-features {
    margin-bottom: 2rem;
}

.future-item {
    margin-bottom: 1.5rem;
}

.future-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.future-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.future-vision {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.future-image {
    display: flex;
    justify-content: center;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}


/* Contact Page Styles */

.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.contact-options {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    margin-bottom: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-cta {
    margin-bottom: 2rem;
}

.contact-benefits {
    text-align: left;
}

.benefit-item {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info {
    text-align: left;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

.info-text {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.demo-section {
    padding: 100px 0;
    background: #f8fafc;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.demo-intro {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.demo-features {
    margin-bottom: 2rem;
}

.demo-item {
    margin-bottom: 1.5rem;
}

.demo-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.demo-item p {
    color: var(--text-light);
    font-size: 1rem;
}

.demo-cta {
    margin-top: 2rem;
}

.demo-image {
    display: flex;
    justify-content: center;
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.forms-section {
    padding: 100px 0;
    background: #f8fafc;
}

.forms-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-placeholder {
    background: #f3f4f6;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #d1d5db;
}

.form-note {
    color: var(--text-light);
    font-style: italic;
}


/* FAQ Page Styles */

.faq-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.category-nav {
    padding: 80px 0;
    background: white;
}

.nav-content {
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-item .category-icon {
    margin-bottom: 1rem;
}

.category-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.category-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.faq-content {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
}

.category-header .category-icon {
    margin-right: 2rem;
}

.category-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
}

.category-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* .faq-item:hover {
    transform: translateY(-2px);
} */

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


/* Compliance Page Styles */

.compliance-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.regulatory-section {
    padding: 100px 0;
    background: white;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.regulatory-card {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.regulatory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.regulatory-icon {
    margin-bottom: 2rem;
}

.regulatory-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.regulatory-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge.progress {
    background: var(--secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.regulatory-cta {
    margin-top: 1rem;
}

.security-section {
    padding: 100px 0;
    background: #f8fafc;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.security-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
}

.security-icon {
    margin-bottom: 1.5rem;
}

.security-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.security-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}