      /* ===== Base Styles ===== */
        :root {
            --primary: #0066cc;
            --primary-dark: #004d99;
            --secondary: #00a1e0;
            --accent: #ff6b6b;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }

        /* ===== Section Container ===== */
        .tmh-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* ===== Header Styles ===== */
        .tmh-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .tmh-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .tmh-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .tmh-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .tmh-divider {
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* ===== Main Content Grid ===== */
        .tmh-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        /* ===== Image Column ===== */
        .tmh-image-column {
            display: flex;
            flex-direction: column;
            gap: 0; /* Removed gap between image and caption */
        }

        /* ===== Image Card ===== */
        .tmh-image-card {
            position: relative;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            margin-bottom: 0; /* Removed margin */
        }

        .tmh-image-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .tmh-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .tmh-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== Image Caption ===== */
        .tmh-image-caption {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            box-shadow: var(--shadow);
            margin-top: 0; /* Connected directly to image */
        }

        .tmh-caption-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .tmh-caption-text {
            font-size: 0.95rem;
            color: var(--gray);
        }

        /* ===== Stats Grid ===== */
        .tmh-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .tmh-stat {
            background: var(--white);
            padding: 1rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
        }

        .tmh-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .tmh-stat-label {
            font-size: 0.85rem;
            color: var(--gray);
        }

        /* ===== Content Card ===== */
        .tmh-content-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }

        .tmh-content-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .tmh-content-title i {
            color: var(--secondary);
        }

        .tmh-text {
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        /* ===== Features List ===== */
        .tmh-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .tmh-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--light-gray);
        }

        .tmh-feature i {
            color: var(--secondary);
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* ===== Services Grid ===== */
        .tmh-services {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .tmh-service {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 8px;
            background: rgba(0, 102, 204, 0.05);
            transition: var(--transition);
        }

        .tmh-service:hover {
            background: rgba(0, 102, 204, 0.1);
        }

        .tmh-service-icon {
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .tmh-service-text {
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* ===== CTA Button ===== */
        .tmh-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            background: var(--primary);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            width: 100%;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 1rem;
        }

        .tmh-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .tmh-cta i {
            transition: transform 0.3s ease;
        }

        .tmh-cta:hover i {
            transform: translateX(3px);
        }

        /* ===== Responsive Design ===== */
        @media (min-width: 768px) {
            .tmh-grid {
                grid-template-columns: 1fr 1fr;
            }

            .tmh-header {
                margin-bottom: 4rem;
            }

            .tmh-title {
                font-size: 3rem;
            }

            .tmh-content-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 480px) {
            .tmh-container {
                padding: 1.5rem 1rem;
            }

            .tmh-title {
                font-size: 2rem;
            }

            .tmh-subtitle {
                font-size: 1.1rem;
            }

            .tmh-stats {
                grid-template-columns: 1fr;
            }

            .tmh-services {
                grid-template-columns: 1fr;
            }

            .tmh-content-card {
                padding: 1.5rem;
            }
        }