body {
            font-family: "Segoe UI", Tahoma, Arial, sans-serif;
            background: #f7f9fb;
            color: #1f2a3a;
            margin: 0;
        }
        .layout {
            max-width: 1200px;
            margin: 0 auto;
            padding: 32px 20px 48px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }
        .left-panel {
            flex: 1.2;
        }
        .tab-nav {
            display: flex;
            gap: 10px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }
        .tab-btn {
            border: 1px solid #c6d8ee;
            background: #ffffff;
            color: #005a9c;
            border-radius: 999px;
            padding: 8px 14px;
            cursor: pointer;
            font-weight: 700;
        }
        .tab-btn.active {
            background: #005a9c;
            color: #ffffff;
            border-color: #005a9c;
        }
        .tab-pane {
            display: none;
        }
        .tab-pane.active {
            display: block;
        }
        .right-panel {
            flex: 1;
            border-left: 2px solid #d7dce3;
            padding-left: 24px;
        }
        h1 {
            font-size: 2rem;
            margin-bottom: 6px;
        }
        .tagline {
            font-style: italic;
            color: #44506a;
            margin-bottom: 20px;
        }
        h2 {
            margin-top: 24px;
            font-size: 1.3rem;
            color: #005a9c;
        }
        ul {
            padding-left: 20px;
        }
        .contact-list a {
            color: #047857;
            text-decoration: none;
        }
        .contact-list a:hover {
            text-decoration: underline;
        }
        .contact-links {
            display: grid;
            gap: 8px;
        }
        .contact-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }
        .label {
            font-weight: 700;
        }
        .section {
            background: #ffffff;
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
        }
        .section h2 {
            color: #005a9c;
            border-bottom: 2px solid #005a9c;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .contact-info p, .staff-member-info p {
            margin: 10px 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .contact-info i, .staff-member-info i {
            margin-right: 10px;
            color: #005a9c;
        }
        .contact-link {
            color: #047857;
            font-weight: 700;
            text-decoration: none;
        }
        .contact-link:hover {
            color: #065f46;
            text-decoration: underline;
        }
        .social-media {
            text-align: center;
            margin-top: 20px;
        }
        .social-media a {
            color: #333;
            font-size: 2rem;
            margin: 0 15px;
            transition: color 0.3s;
        }
        .social-media a:hover {
            color: #005a9c;
        }
        .staff-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .staff-member {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.08);
            background: #ffffff;
        }
        .staff-member img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
        }
        .staff-member img.ceo-photo {
            width: 120px;
            height: 120px;
        }
        .staff-member-info h3 {
            margin: 0;
            color: #555;
        }
        @media (max-width: 900px) {
            .layout {
                flex-direction: column;
            }
            .right-panel {
                border-left: none;
                padding-left: 0;
            }
        }
