﻿/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}




.main-nav {
    float: right;
}

    .main-nav a {
        color: #fff;
        text-decoration: none;
        margin: 0 12px;
        font-size: 16px;
    }

/* Practice Area */
.practice-area h2 {
    color: #0a2e60;
    margin-top: 40px;
    font-size: 32px;
}

.practice-area h3 {
    margin-top: 25px;
    color: #0a2e60;
    font-size: 22px;
}

.practice-area p, .practice-area li {
    font-size: 16px;
    line-height: 1.58;
}

.practice-area ul {
    list-style: disc inside;
}

.team-section {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.team-member {
    text-align: center;
    width: 50%;
}

    .team-member img {
        width: 140px;
        border-radius: 50%;
    }

.contact-btn {
    background: #0a2e60;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    margin-top: 25px;
    font-size: 16px;
}

/* Footer */
.site-footer {
    text-align: center;
    background: #f1f1f1;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 14px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== HEADER ===== */
.top-header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}



.logo img {
    height: 55px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Make sure menu stays horizontal */
.nav-item {
    white-space: nowrap;
}

/* Proper alignment */
.logo {
    flex: 0 0 auto;
}

.nav-menu {
    flex: 1;
    justify-content: center;
}

.nav-right {
    flex: 0 0 auto;
}