    body {
        font-family: Arial, sans-serif;
        margin: 0;
        background-color: #f0f0f0;
        color: #333;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    nav {
        background-color: #222;
        color: white;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 0;
        gap: 15px;
        position: sticky;
        top: 0;
        z-index: 100;
    }

    nav a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        padding: 8px 12px;
        border-radius: 5px;
        transition: background 0.3s;
    }

    nav a:hover {
        background-color: #555;
    }

    .content {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background-color: #ffffff;
        margin: 20px auto;
        border-radius: 15px;
        max-width: 1200px;
    }

    .content img.logo {
        width: 250px;
        height: auto;
        margin-right: 30px;
        border-radius: 15px;
        border: 2px solid black;
    }

    .content-text {
        max-width: 700px;
    }

    h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 1.5em;
        margin: 15px 0 5px;
    }

    p {
        font-size: 1.2em;
        margin: 10px 0;
        line-height: 1.6em;
    }

    .section {
        width: 95%;
        flex: 1;
        max-width: 1200px;
        margin: 25px auto;
        padding: 30px;
        background-color: #ffffff;
        border-radius: 15px;
        text-align: left;
        color: #333;
    }

    .members {
        background-color: #e0e0e0;
        padding: 30px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        border-radius: 10px;
    }

    .member-card {
        background-color: #ffffff;
        padding: 15px;
        border-radius: 10px;
        width: 180px;
        text-align: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .member-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
        border: 2px solid #333;
    }

    .footer {
        background-color: #222;
        color: white;
        text-align: center;
        padding: 15px 0;
        margin-top: auto;
    }

/* Secondary bar below nav menu */
.secondary-bar {
    background-color: #f4f4f4; /* light gray background (change as needed) */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 2px solid #ccc;
}

.secondary-bar .logo {
    height: 50px; /* adjust size */
    width: auto;
    margin-right: 30px;
    border-radius: 15px;
    border: 2px solid black;
}

.secondary-bar h1 {
    font-size: 1.8rem;
    margin: 0;
}

/* Team Page Styling */
#team {
    padding: 40px 20px;
}

.member {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

.member img {
    width: 120px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.member-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.member-info p {
    margin: 5px 0;
    font-size: 1rem;
}


/* Documentation Page Styling */
.document-card {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.document-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.document-card p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.4;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 16px;
    background-color: #0077cc;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background-color: #005fa3;
}

/* Client layout helpers */
.client-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 28px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

    .client-intro {
    flex: 1 1 78%;
    min-width: 320px;
    max-width: 900px;
    text-align: left;
}

    .client-side {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 260px;
    justify-content: flex-start;
}

    .client-photo {
    width: 200px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #333;
}

.client-contact {
    font-size: 0.95rem;
    line-height: 1.2;
    margin: 0;
}

.client-contact p { margin: 0 0 6px 0; }
.client-name { font-weight: 700; margin-bottom: 6px; }

@media (max-width: 760px) {
    .client-row { flex-direction: column; align-items: center; }
    .client-side { flex-direction: column; align-items: center; text-align: center; }
    .client-contact { text-align: center; }
}

/* Demo gallery: show images side-by-side on wide screens, stack on small screens */
.demo-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.demo-item {
    flex: 0 1 30%;
    max-width: 320px;
    text-align: center;
}

.demo-item h3 {
    margin: 8px 0 6px;
}

.demo-item p {
    font-size: 0.95rem;
    margin: 0 0 8px;
}

.demo-item img.demo-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .demo-gallery { flex-wrap: wrap; }
    .demo-item { flex: 0 1 45%; }
}

@media (max-width: 600px) {
    .demo-gallery { flex-direction: column; align-items: center; }
    .demo-item { flex: 1 1 90%; max-width: 560px; }
}

/* ── Video Intro ──────────────────────────────────────────── */

.video-intro {
    margin: 0 0 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: var(--surface, #fff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.video-intro h3 {
    margin: 0 0 0.5rem;
}

.video-intro p {
    margin: 0 auto 1.25rem;
    max-width: 680px;
    color: var(--text-muted, #555);
}

.video-wrapper {
    display: flex;
    justify-content: center;
}

.video-wrapper video {
    width: 100%;
    max-width: 860px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ── Feature Blocks ───────────────────────────────────────── */

.feature-block {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border-radius: 10px;
    background: var(--surface, #fff);           /* adapts to your existing theme vars */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.feature-block--alt {
    background: var(--surface-alt, #f7f7f7);    /* subtle alternating background */
}

.feature-header {
    margin-bottom: 1.25rem;
}

.feature-header h3 {
    margin: 0 0 0.25rem;
    font-size: 1.4rem;
}

.feature-tagline {
    margin: 0;
    font-style: italic;
    opacity: 0.7;
    font-size: 0.95rem;
}

/* ── Feature Body: side-by-side layout ───────────────────── */

.feature-body {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.feature-body--reversed {
    flex-direction: row-reverse;
}

.feature-screenshots {
    flex: 0 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-screenshots figure {
    margin: 0;
    text-align: center;
}

.feature-screenshots figcaption {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

.demo-img {
    width: 220px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    display: block;
}

/* ── Feature Description ─────────────────────────────────── */

.feature-description {
    flex: 1 1 280px;
}

.feature-description p {
    margin-top: 0;
    line-height: 1.65;
}

.feature-highlights {
    margin-top: 1rem;
    padding-left: 1.2rem;
    line-height: 1.8;
}

.feature-highlights li::marker {
    color: var(--accent, #4a90d9);
}

/* ── Responsive: stack on small screens ──────────────────── */

@media (max-width: 640px) {
    .feature-body,
    .feature-body--reversed {
        flex-direction: column;
    }

    .demo-img {
        width: 100%;
    }
}

