    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; }
}

