/* Combined + page-scoped styles (auto-generated) */
    :root {
        --primary: #0066cc;
        --primary-dark: #0052a3;
        --secondary: #2d3748;
        --accent: #00a86b;
        --light: #f8fafc;
        --gray: #64748b;
        --dark: #1e293b;
        --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --radius: 8px;
        --transition: all 0.3s ease;
    }

    *, :after, :before {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--dark);
        background-color: #fff;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 3.5rem;
        font-weight: 700;
    }

    h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
    }

    h2:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--primary);
        border-radius: 2px;
    }

    h3 {
        font-size: 1.75rem;
    }

    p {
        margin-bottom: 1.5rem;
        color: var(--gray);
        font-size: 1.1rem;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    section {
        padding: 5rem 0;
    }

    .btn {
        display: inline-block;
        padding: 0.9rem 2rem;
        background-color: var(--primary);
        color: #fff;
        border: none;
        border-radius: var(--radius);
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
    }

    .btn:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .btn-accent {
        background-color: #af3a0d;
    }

    .btn-accent:hover {
        background-color: var(--primary);
    }

    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    .btn-outline:hover {
        background-color: var(--primary);
        color: #fff;
    }

    /* Header & Navigation */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #00041f;
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        transition: var(--transition);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        display: flex;
        align-items: center;
        order: 2;
    }

    .logo i {
        margin-right: 0.5rem;
        font-size: 2rem;
    }

    .logo span {
        color: var(--accent);
    }

    nav {
        order: 3;
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav li {
        margin-left: 2.5rem;
    }

    nav a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        font-size: 1.1rem;
        transition: var(--transition);
        position: relative;
    }

    nav a:hover {
        color: var(--primary);
    }

    nav a:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s;
    }

    nav a:hover:after {
        width: 100%;
    }

    .mobile-toggle {
        display: none;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
        order: 1;
    }

    /* Hero Section */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
        position: relative;
        overflow: hidden;
    }

    .hero:before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 70%;
        height: 150%;
        background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0) 70%);
        z-index: 0;
    }

    .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }

    .hero-text {
        flex: 1;
        max-width: 600px;
    }

    .hero h1 {
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        color: var(--secondary);
    }

    .hero-btns {
        display: flex;
        gap: 1rem;
    }

    .hero-image {
        flex: 1;
        text-align: right;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    /* Services */
    .services {
        background-color: var(--light);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }

    .service-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 2.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: center;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow);
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .service-icon i {
        font-size: 2rem;
        color: #fff;
    }

    /* Team Section */
    .team {
        background-color: #fff;
    }

    .team-intro {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
    }

    .team-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .team-tab {
        padding: 0.8rem 1.5rem;
        background: var(--light);
        border: none;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .team-tab.active {
        background: var(--primary);
        color: #fff;
    }

    .team-tab:hover:not(.active) {
        background: #e2e8f0;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2.5rem;
    }

    .team-member {
        background: #fff;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .member-header {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
        padding: 2rem;
        position: relative;
    }

    .member-role {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .member-name {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .member-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .member-tag {
        background: rgba(255, 255, 255, 0.2);
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        font-size: 0.8rem;
    }

    .member-content {
        padding: 2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .member-summary {
        font-style: italic;
        color: var(--primary);
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e2e8f0;
        font-weight: 500;
    }

    .member-details {
        flex-grow: 1;
    }

    .member-details p {
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .highlight {
        color: var(--primary);
        font-weight: 500;
    }

    /* About */
    .about-content {
        display: flex;
        align-items: center;
        gap: 4rem;
    }

    .about-text, .about-image {
        flex: 1;
    }

    .about-image img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .stats {
        display: flex;
        justify-content: space-between;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .stat {
        text-align: center;
        padding: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
    }

    .stat-text {
        font-size: 1rem;
        color: var(--gray);
    }

    /* Contact Section */
    .contact {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: #fff;
    }

    .contact h2, .contact p {
        color: #fff;
    }

    .contact h2:after {
        background: #fff;
    }

    .contact-content {
        display: flex;
        gap: 4rem;
        align-items: center;
    }

    .map-container {
        flex: 1;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        height: 500px;
    }

    .map-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #000;
        position: relative;
    }

    .map-placeholder i {
        font-size: 4rem;
        margin-bottom: 2rem;
        opacity: 0.8;
    }

    .map-placeholder h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .map-placeholder p {
        color: #000;
        text-align: center;
        max-width: 80%;
    }

    .map-link {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 0.8rem 1.5rem;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius);
        color: #000;
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
    }

    .map-link:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .contact-info {
        flex: 1;
    }

    .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: var(--radius);
        transition: var(--transition);
    }

    .info-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
    }

    .info-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .info-icon i {
        font-size: 1.5rem;
        color: #fff;
    }

    .info-text h3 {
        margin-bottom: 0.5rem;
    }

    .info-text p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-note {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius);
        font-style: italic;
    }

    /* Footer */
    footer {
        background-color: #00041f;
        color: #fff;
        padding: 4rem 0 2rem;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    .footer-col {
        flex: 1;
        min-width: 250px;
        margin-bottom: 2rem;
    }

    .footer-col h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #fff;
    }

    .footer-links li {
        list-style: none;
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: #cbd5e0;
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: #fff;
        padding-left: 5px;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .social-icon:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #cbd5e0;
        font-size: 0.9rem;
    }

    /* Service Detail Sections - FIXED VERSION */
    .service-detail {
        padding: 100px 0;
        display: none;
    }
    
    .service-detail.active {
        display: block;
    }
    
    .service-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .service-header h1 {
        font-size: 2.5rem;
        color: #0056b3;
        margin-bottom: 15px;
    }
    
    .service-header p {
        color: #666;
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
    }
    
    /* FIXED: Service body layout - separate image and content */
    .service-body {
        display: flex;
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
        margin-bottom: 50px;
    }
    
    .service-image {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .service-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s;
    }
    
    .service-image:hover img {
        transform: scale(1.05);
    }
    
    .service-info {
        flex: 1;
    }
    
    .service-info h3 {
        font-size: 1.8rem;
        color: #0056b3;
        margin-bottom: 20px;
    }
    
    .service-info ul {
        list-style: none;
        margin: 25px 0;
    }
    
    .service-info li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }
    
    .service-info li i {
        color: #ff7e30;
        margin-right: 10px;
    }
    
    .service-cta {
        background: #f0f7ff;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        margin-top: 40px;
    }
    
    .service-cta h3 {
        color: #0056b3;
        margin-bottom: 15px;
    }
    
    .call-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #28a745;
        color: white;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        margin-top: 15px;
        transition: background 0.3s;
    }
    
    .call-button:hover {
        background: #218838;
    }

    /* Responsive Design - Original */
    @media (max-width: 992px) {
        h1 {
            font-size: 2.8rem;
        }
        
        h2 {
            font-size: 2.2rem;
        }
        
        .hero-content, .about-content, .contact-content {
            flex-direction: column;
        }
        
        .hero-text, .about-text, .map-container, .contact-info {
            width: 100%;
        }
        
        .hero-image, .about-image {
            margin-top: 3rem;
        }
        
        .hero-btns {
            justify-content: center;
        }
        
        .team-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
        
        .map-container {
            height: 400px;
            margin-bottom: 3rem;
        }
        
        /* FIXED: Service section responsive */
        .service-body {
            flex-direction: column;
            gap: 30px;
        }
        
        .service-image, .service-info {
            width: 100%;
            max-width: 100%;
        }
        
        .service-header h1 {
            font-size: 2rem;
        }
        
        .service-info h3 {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 768px) {
        .mobile-toggle {
            display: block;
            order: 1;
        }
        
        .logo {
            order: 2;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            margin: 0;
        }
        
        nav {
            order: 3;
        }
        
        nav ul {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #fff;
            flex-direction: column;
            align-items: center;
            padding: 2rem 0;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }
        
        nav.active ul {
            transform: translateY(0);
        }
        
        nav li {
            margin: 1rem 0;
        }
        
        nav a {
            color: var(--dark);
        }
        
        .header-container {
            padding: 0 1rem;
        }
        
        .hero {
            padding-top: 8rem;
        }
        
        .services-grid, .team-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-content {
            flex-direction: column;
        }
        
        .team-tabs {
            overflow-x: auto;
            justify-content: flex-start;
            padding-bottom: 1rem;
        }
        
        .team-tabs::-webkit-scrollbar {
            height: 4px;
        }
        
        .team-tabs::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 2px;
        }
        
        .team-tabs::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 2px;
        }
        
        .map-container {
            height: 350px;
        }
        
        /* FIXED: Service section mobile */
        .service-detail {
            padding: 60px 0;
        }
        
        .service-header {
            margin-bottom: 30px;
        }
        
        .service-header h1 {
            font-size: 1.8rem;
        }
        
        .service-header p {
            font-size: 1rem;
        }
        
        .service-info ul {
            margin: 15px 0;
        }
        
        .service-info li {
            font-size: 0.95rem;
            padding: 8px 0;
        }
        
        .service-cta {
            padding: 20px;
            margin-top: 30px;
        }
        
        .services-grid {
            gap: 1.5rem;
        }
        
        .service-card {
            padding: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        h1 {
            font-size: 2.2rem;
        }
        
        h2 {
            font-size: 1.8rem;
        }
        
        .container {
            padding: 0 1.5rem;
        }
        
        section {
            padding: 3rem 0;
        }
        
        .hero-btns {
            flex-direction: column;
            width: 100%;
        }
        
        .btn {
            width: 100%;
            text-align: center;
        }
        
        .team-member {
            margin: 0 auto;
            max-width: 100%;
        }
        
        .map-container {
            height: 300px;
        }
        
        .info-item {
            flex-direction: column;
            text-align: center;
        }
        
        .info-icon {
            margin-right: 0;
            margin-bottom: 1rem;
        }
        
        .logo img {
            width: 140px;
        }
        
        .mobile-toggle {
            font-size: 1.3rem;
        }
        
        /* FIXED: Service section small mobile */
        .service-detail {
            padding: 40px 0;
        }
        
        .service-header h1 {
            font-size: 1.6rem;
        }
        
        .service-info h3 {
            font-size: 1.4rem;
        }
        
        .call-button {
            padding: 12px 24px;
            font-size: 1rem;
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 992px) and (min-width: 769px) {
        .mobile-toggle {
            display: none;
        }
        
        nav ul {
            display: flex;
        }
    }