
        /* --- Basic Settings --- */
        :root {
            --primary-color: #003366; /* Industrial Dark Blue - Represents professionalism */
            --accent-color: #ff6600;  /* Safety Orange - Represents the lifting industry */
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f9f9f9;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; line-height: 1.6; color: var(--text-dark); }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }

        /* --- Layout Tools --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }

        /* --- Hero Section (Top Banner) --- */
        .hero {
            /* Linear gradient overlay for better text readability */
            background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.6)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .hero h1 { font-size: 3rem; margin-bottom: 15px; font-weight: 700; }
        .hero p { font-size: 1.25rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }

        /* --- Company Introduction (Text & Image) --- */
        .about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .about-text h2 { color: var(--primary-color); font-size: 2.2rem; margin-bottom: 20px; position: relative; }
        .about-text h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--accent-color); margin-top: 10px; }
        .about-text p { margin-bottom: 15px; color: var(--text-light); font-size: 1.05rem; }
        .about-image img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

        /* --- Key Stats Section --- */
        .stats-section { background-color: var(--primary-color); color: white; padding: 60px 0; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .stat-item h3 { font-size: 3rem; font-weight: 700; color: var(--accent-color); margin-bottom: 10px; }
        .stat-item p { font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

        /* --- Values Section (Why Choose Us) --- */
        .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
        .value-card { background: white; padding: 40px 30px; border: 1px solid #eee; border-radius: 8px; transition: 0.3s; text-align: center; }
        .value-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: var(--accent-color); }
        .icon-box { width: 70px; height: 70px; background: var(--bg-light); border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 24px; font-weight: bold; }
        .value-card h3 { margin-bottom: 15px; color: var(--primary-color); }
        .value-card p { color: var(--text-light); font-size: 0.95rem; }

        /* --- Certificates Section --- */
        .certs-section { background-color: var(--bg-light); }
        .certs-container { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; align-items: center; margin-top: 40px; }
        .cert-logo { height: 80px; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; }
        .cert-logo:hover { filter: grayscale(0%); opacity: 1; }
        
        /* --- Call to Action (CTA) --- */
        .cta-section { text-align: center; background: linear-gradient(to right, #003366, #004080); color: white; }
        .cta-btn { display: inline-block; background-color: var(--accent-color); color: white; padding: 15px 40px; font-size: 1.1rem; font-weight: 600; border-radius: 5px; margin-top: 30px; transition: 0.3s; }
        .cta-btn:hover { background-color: #e55c00; }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .about-intro { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .values-grid { grid-template-columns: 1fr; }
            .cert-logo { height: 60px; gap: 30px; }
        }
    