 /* Base Styles */
        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        .header-container {
            width: 100%;
            position: relative;
            z-index: 1000;
        }
        
        /* Breadcrumb Navigation */
        .breadcrumb {
            margin: 20px 0;
            padding: 15px;
            font-size: 16px;
            background-color: #f8f9fa;
            color: #666;
            border-radius: 4px;
        }
        
        .breadcrumb a {
            color: #ed0404;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #c00404;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            color: #555;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            background: url('../mechanicalimages/1.png') no-repeat center center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .overlay {
            position: relative;
            text-align: center;
            padding: 20px;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .overlay h1 {
            color: white;
            font-size: 3rem;
            margin: 0 0 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        
        .underline {
            width: 80px;
            height: 4px;
            background: #ffcc00;
            margin: 15px auto 25px;
        }
        
        /* Main Content Container */
        .container {
            max-width: 1300px;
            margin: 30px auto;
            background: white;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
        }
        
        /* Typography */
        h1, h2, h3 {
            color: #222;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #333;
            margin-top: 40px;
            position: relative;
            padding-bottom: 10px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: #ed0404;
        }
        
        p {
            margin: 0 0 20px;
            line-height: 1.7;
            font-size: 1.1rem;
            color: #444;
        }
        
        /* Section Layouts */
        .section {
            display: flex;
            align-items: center;
            gap: 40px;
            margin: 40px 0;
        }
        
        .section img {
            width: 45%;
            max-width: 600px;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .content {
            flex: 1;
        }
        
        /* Features List */
        .features-list {
            list-style-type: none;
            padding: 0;
            margin: 30px 0;
        }
        
        .features-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #ed0404;
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        .features-list strong {
            color: #222;
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            margin: 50px 0 30px;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 8px;
        }
        
        .cta h2 {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .cta h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .cta a {
            display: inline-block;
            padding: 15px 30px;
            background: #ed0404;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid #ed0404;
        }
        
        .cta a:hover {
            background: transparent;
            color: #ed0404;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .section {
                flex-direction: column;
            }
            
            .section img {
                width: 100%;
                max-width: 100%;
            }
            
            .overlay h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                height: 300px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            .container {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .overlay h1 {
                font-size: 2rem;
            padding: 0 15px;
            line-height: 1.2;
            margin-bottom: 10px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            -webkit-hyphens: auto;
            -ms-hyphens: auto;
        }
        
            .cta a {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        
        /* Print Styles */
        @media print {
            body {
                background: white;
                font-size: 12pt;
                line-height: 1.4;
            }
            
            .container {
                box-shadow: none;
                padding: 0;
                margin: 0;
            }
            
            .hero, .breadcrumb, .cta a {
                display: none;
            }
            
            h1, h2, h3 {
                page-break-after: avoid;
            }
            
            .section {
                page-break-inside: avoid;
            }
        }