:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c938eac */body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
 
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
 
        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
 
        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
 
        .firm-name {
            display: flex;
            flex-direction: column;
        }
 
        .firm-name h1 {
            font-size: 18px;
            margin: 0;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
 
        .firm-name p {
            font-size: 11px;
            margin: 0;
            opacity: 0.9;
            letter-spacing: 0.3px;
        }
 
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
 
        nav a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: opacity 0.3s;
            font-weight: 500;
        }
 
        nav a:hover {
            opacity: 0.8;
            border-bottom: 2px solid white;
            padding-bottom: 3px;
        }
 
        /* Hamburger toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 200;
        }
 
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
 
        .menu-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
        .menu-toggle.open span:nth-child(2) { opacity: 0; }
        .menu-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
 
        /* Mission/Vision responsive grid */
        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
        }
 
        /* Breadcrumb */
        .breadcrumb {
            background: #f5f5f5;
            padding: 15px 2rem;
            font-size: 13px;
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .breadcrumb a {
            color: #1976d2;
            text-decoration: none;
            margin: 0 5px;
        }
 
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
            color: white;
            padding: 60px 2rem;
            text-align: center;
        }
 
        .page-header h1 {
            font-size: 44px;
            margin-bottom: 15px;
            font-weight: 700;
        }
 
        .page-header p {
            font-size: 16px;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
        }
 
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
 
        /* Team Section */
        .team-section {
            padding: 80px 2rem;
        }
 
        .team-intro {
            text-align: center;
            margin-bottom: 60px;
        }
 
        .team-intro h2 {
            font-size: 32px;
            color: #0d47a1;
            margin-bottom: 15px;
            font-weight: 700;
        }
 
        .team-intro p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 15px;
        }
 
        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
 
        .team-member {
            text-align: center;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
 
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(25, 118, 210, 0.2);
        }
 
        .member-image {
            background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
        }
 
        .member-info {
            padding: 30px;
        }
 
        .member-info h3 {
            font-size: 22px;
            color: #0d47a1;
            margin-bottom: 8px;
            font-weight: 700;
        }
 
        .member-position {
            color: #1976d2;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 15px;
        }
 
        .member-bio {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
 
        .member-expertise {
            background: #f0f7ff;
            padding: 15px;
            border-radius: 6px;
            margin-top: 15px;
        }
 
        .member-expertise h4 {
            color: #0d47a1;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 10px;
        }
 
        .expertise-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
 
        .expertise-tag {
            background: white;
            color: #1976d2;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            border: 1px solid #1976d2;
        }
 
        .member-contact {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
 
        .member-contact p {
            font-size: 13px;
            color: #666;
            margin: 8px 0;
        }
 
        .member-contact strong {
            color: #0d47a1;
        }
 
        /* Values Section */
        .values-section {
            background: #f5f5f5;
            padding: 60px 2rem;
            margin: 80px 0;
            border-radius: 8px;
        }
 
        .values-section h2 {
            font-size: 32px;
            color: #0d47a1;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 700;
        }
 
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
 
        .value-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            text-align: center;
            border-top: 4px solid #1976d2;
        }
 
        .value-card h3 {
            color: #0d47a1;
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 600;
        }
 
        .value-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
        }
 
        /* CTA Section */
        .team-cta {
            background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
            color: white;
            padding: 50px 2rem;
            text-align: center;
            border-radius: 8px;
            margin: 80px 0;
        }
 
        .team-cta h3 {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 700;
        }
 
        .team-cta p {
            font-size: 16px;
            margin-bottom: 25px;
            opacity: 0.95;
        }
 
        .cta-button {
            background: white;
            color: #0d47a1;
            padding: 14px 40px;
            border: none;
            border-radius: 5px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
 
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }
 
        /* Footer */
        footer {
            background: #0d47a1;
            color: white;
            padding: 40px 2rem;
            text-align: center;
            margin-top: 80px;
        }
 
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .footer-content h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }
 
        .footer-content p {
            margin: 8px 0;
            opacity: 0.9;
            font-size: 13px;
        }
 
        .footer-links {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
 
        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 13px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
 
        .footer-links a:hover {
            opacity: 1;
        }
 
        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 0 1.25rem;
                position: relative;
            }
 
            .menu-toggle {
                display: flex;
            }
 
            nav ul {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: #0d47a1;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 8px 12px rgba(0,0,0,0.15);
            }
 
            nav ul.open {
                max-height: 320px;
            }
 
            nav ul li { width: 100%; }
 
            nav ul a {
                display: block;
                padding: 14px 1.25rem;
                font-size: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
 
            nav a:hover {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
 
            .breadcrumb {
                padding: 12px 1.25rem;
            }
 
            .page-header {
                padding: 40px 1.25rem;
            }
 
            .page-header h1 {
                font-size: 26px;
            }
 
            .page-header p {
                font-size: 14px;
            }
 
            .team-section {
                padding: 50px 1.25rem;
            }
 
            .container {
                padding: 0;
            }
 
            .team-grid {
                grid-template-columns: 1fr;
            }
 
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }
 
            .values-grid {
                grid-template-columns: 1fr;
            }
 
            .team-cta {
                padding: 40px 1.25rem;
                margin: 50px 0;
            }
 
            .team-cta h3 {
                font-size: 22px;
            }
 
            .cta-button {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                text-align: center;
            }
 
            .values-section {
                margin: 50px 0;
                padding: 40px 1.25rem;
            }
        }
 
        @media (max-width: 480px) {
            .firm-name p { display: none; }
            .page-header h1 { font-size: 22px; }
            .team-intro h2 { font-size: 24px; }
            .values-section h2 { font-size: 24px; }
        }/* End custom CSS */