.elementor-widget-theme-page-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-5ba5cc4 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        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;
        }
 
        .logo-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            padding: 3px;
        }
 
        .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); }
 
        /* 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;
        }
 
        .breadcrumb a:hover {
            text-decoration: underline;
        }
 
        /* 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;
        }
 
        /* Services Grid */
        .services-section {
            padding: 80px 2rem;
        }
 
        .services-intro {
            text-align: center;
            margin-bottom: 60px;
        }
 
        .services-intro h2 {
            font-size: 32px;
            color: #0d47a1;
            margin-bottom: 15px;
            font-weight: 700;
        }
 
        .services-intro p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-size: 15px;
        }
 
        .service-detail {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-bottom: 80px;
            align-items: center;
        }
 
        .service-detail:nth-child(even) {
            grid-template-columns: 1fr 1fr;
        }
 
        .service-detail:nth-child(even) .service-text {
            order: 2;
        }
 
        .service-detail:nth-child(even) .service-image {
            order: 1;
        }
 
        .service-image {
            background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
            border-radius: 8px;
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            text-align: center;
            padding: 30px;
        }
 
        .service-text h3 {
            font-size: 28px;
            color: #0d47a1;
            margin-bottom: 20px;
            font-weight: 700;
        }
 
        .service-text p {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.8;
        }
 
        .service-features {
            background: #f0f7ff;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid #1976d2;
            margin-top: 20px;
        }
 
        .service-features h4 {
            color: #0d47a1;
            margin-bottom: 12px;
            font-weight: 600;
        }
 
        .service-features ul {
            list-style: none;
        }
 
        .service-features li {
            padding: 8px 0;
            color: #555;
            font-size: 14px;
        }
 
        .service-features li:before {
            content: "✓ ";
            color: #1976d2;
            font-weight: bold;
            margin-right: 8px;
        }
 
        /* Service Cards Grid */
        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 80px;
        }
 
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border: 2px solid transparent;
        }
 
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(25, 118, 210, 0.2);
            border-color: #1976d2;
        }
 
        .service-card h4 {
            color: #0d47a1;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
        }
 
        .service-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.7;
        }
 
        /* CTA */
        .service-cta {
            background: #f0f7ff;
            padding: 50px 2rem;
            text-align: center;
            border-radius: 8px;
            margin: 60px 0;
        }
 
        .service-cta h3 {
            font-size: 28px;
            color: #0d47a1;
            margin-bottom: 15px;
            font-weight: 700;
        }
 
        .service-cta p {
            color: #666;
            margin-bottom: 25px;
            font-size: 15px;
        }
 
        .cta-button {
            background: #1976d2;
            color: white;
            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 {
            background: #0d47a1;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
        }
 
        /* 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;
            }
 
            .firm-name h1 { font-size: 15px; }
            .firm-name p  { font-size: 10px; }
 
            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; }
 
            .services-section { padding: 50px 1.25rem; }
            .container        { padding: 0; }
 
            .services-intro h2 { font-size: 24px; }
 
            /* Collapse alternating two-column service rows */
            .service-detail {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 50px;
            }
 
            /* Reset even-row order overrides so image always comes first on mobile */
            .service-detail:nth-child(even) .service-text  { order: 2; }
            .service-detail:nth-child(even) .service-image { order: 1; }
 
            .service-image { min-height: 180px; }
 
            .service-text h3 { font-size: 22px; }
 
            .service-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 50px;
            }
 
            .service-cta {
                padding: 40px 1.25rem;
                margin: 40px 0;
            }
 
            .service-cta h3 { font-size: 22px; }
 
            .cta-button {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
                text-align: center;
            }
        }
 
        @media (max-width: 480px) {
            .firm-name p    { display: none; }
            .page-header h1 { font-size: 22px; }
            .services-intro h2 { font-size: 20px; }
        }/* End custom CSS */