* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #0f766e;
            --secondary: #0d9488;
            --accent: #f59e0b;
            --dark: #0f172a;
            --light: #f8fafc;
            --text: #1e293b;
            --gray: #64748b;
            --border: #e2e8f0;
        }
        html { scroll-behavior: smooth; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif; color: var(--text); }
        
        header {
            background: white;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo { font-size: 26px; font-weight: 800; color: var(--primary); text-decoration: none; }
        nav ul { display: flex; list-style: none; gap: 45px; }
        nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 14px; }
        nav a:hover { color: var(--primary); }
        nav a.active { color: var(--primary); border-bottom: 2px solid var(--primary); }

        .page-header {
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            padding: 80px 60px;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .page-header h1 { font-size: 52px; font-weight: 900; margin-bottom: 15px; }
        .page-header p { font-size: 18px; color: var(--gray); max-width: 700px; margin: 0 auto; }

        section { padding: 100px 60px; }
        section.light { background: white; }
        section.gradient { background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%); }

        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }

        .service-item:nth-child(even) { direction: rtl; }
        .service-item:nth-child(even) > * { direction: ltr; }

        .service-content h2 { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
        .service-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 15px; }

        .service-features {
            list-style: none;
            margin-top: 25px;
        }

        .service-features li {
            font-size: 14px;
            color: var(--gray);
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            line-height: 1.6;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
            font-size: 16px;
        }

        .service-image {
            width: 100%;
            height: 450px;
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(15, 118, 110, 0.15);
        }

        .service-image-1 { background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%), url('../stration-images/business-strategy.jpg'); }
        .service-image-2 { background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%), url('../stration-images/operational.jpg'); }
        .service-image-3 { background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%), url('../stration-images/market-expansion.webp'); }
        .service-image-4 { background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%), url('../stration-images/digital-transformation.jpg'); }
        .service-image-5 { background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%), url('../stration-images/talent.jpg'); }
        .service-image-6 { background-image: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%), url('../stration-images/execuative-advisory.jpg'); }

        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 100px 60px;
            text-align: center;
            border-radius: 0;
        }

        .cta-section h2 { font-size: 48px; font-weight: 900; margin-bottom: 20px; }
        .cta-section p { font-size: 18px; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }

        .btn {
            padding: 14px 35px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary { background: var(--primary); color: white; }
        .btn-primary:hover { background: var(--secondary); transform: translateY(-2px); }
        .btn-white { background: white; color: var(--primary); }
        .btn-white:hover { background: var(--light); }

        footer {
            background: var(--dark);
            color: white;
            padding: 80px 60px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        footer h4 { font-size: 13px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1.5px; }
        footer a { color: #94a3b8; text-decoration: none; display: block; font-size: 14px; margin-bottom: 8px; }
        footer a:hover { color: white; }

        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
            color: #64748b;
            font-size: 13px;
        }

        @media (max-width: 1024px) {
            header { padding: 15px 40px; }
            nav ul { gap: 30px; }
            .page-header { padding: 60px 40px; }
            .page-header h1 { font-size: 40px; }
            section { padding: 80px 40px; }
            .service-item { grid-template-columns: 1fr; gap: 50px; }
            footer { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            header { flex-direction: column; gap: 12px; padding: 12px 20px; }
            nav ul { gap: 20px; flex-wrap: wrap; justify-content: center; }
            .page-header { padding: 50px 20px; }
            .page-header h1 { font-size: 32px; }
            section { padding: 60px 20px; }
            .service-content h2 { font-size: 32px; }
            .service-image { height: 300px; }
            footer { grid-template-columns: 1fr; gap: 30px; padding: 50px 20px 30px; }
        }