        /* General Reset and Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            font-size: 18px;
            color: #333;
            background-color: #f4f7f6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* CPA/Contact Header - Fixed for high visibility */
        .cpa-header {
            background-color: #004a7c; /* Deep Blue for Trust */
            color: #ffffff;
            padding: 10px 0;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .cpa-header a {
            color: #ffc107; /* Accent Yellow for CTA */
            text-decoration: none;
            font-weight: 700;
            margin: 0 10px;
            display: inline-block;
            transition: color 0.3s;
        }

        .cpa-header a:hover {
            color: #ffffff;
        }
        
        /* Main Navigation */
        nav {
            background-color: #ffffff;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8em;
            color: #004a7c;
            font-weight: 700;
            text-decoration: none;
        }

        /* Hero Section (Header Images) */
        .hero {
            background: url('/media/header.jpg') no-repeat center center/cover;
            color: #ffffff;
            text-align: center;
            padding: 80px 20px;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5em;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: #ffc107;
            color: #004a7c;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1em;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #ffda6a;
        }

        /* Content Sections */
        .section {
            padding: 60px 0;
            text-align: center;
        }

        .section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2em;
            color: #004a7c;
            margin-bottom: 40px;
            position: relative;
        }

        .section h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #ffc107;
            margin: 10px auto 0;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .product-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 25px;
            text-align: left;
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-card h3 {
            color: #004a7c;
            margin-bottom: 10px;
            font-size: 1.4em;
        }

        .product-card img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        /* SEO Content Area */
        .seo-content {
            text-align: left;
            padding: 20px 0;
            background-color: #e9ecef;
            border-radius: 8px;
            margin-top: 40px;
        }
        
        .seo-content h3 {
            color: #004a7c;
            margin-top: 15px;
            font-size: 1.2em;
        }

        /* Footer */
        footer {
            background-color: #003358;
            color: #ffffff;
            padding: 40px 0;
            text-align: center;
        }

        footer .contact-info {
            margin-top: 20px;
            font-size: 1.1em;
        }
        
        footer a {
            color: #ffc107;
            text-decoration: none;
            font-weight: 700;
        }

        /* Mobile Adjustments (Responsive Design) */
        @media (max-width: 768px) {
            .hero {
                background: url('/media/header_mobile.jpg') no-repeat center center/cover; /* NEW, SMALLER IMAGE */
                padding: 60px 15px;
                min-height: 300px;
            }

            .hero h1 {
                font-size: 2em;
            }

            .hero p {
                font-size: 1em;
            }

            .section {
                padding: 40px 0;
            }

            .section h2 {
                font-size: 1.6em;
            }

            .cpa-header a {
                display: block;
                margin: 5px 0;
            }
        }
/* ==================================== */
/* 🎨 CSS for Comprehensive Elevator Content */
/* ==================================== */

/* --- General Body and Container Styling --- */
.elevator-content-block {
    /* Sets a max width for readability on large screens and centers the block */
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff; /* Ensure background is white */
}

/* --- Main Headings --- */
.elevator-content-block h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #004a99; /* Deep blue for primary heading */
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 3px solid #004a99;
    padding-bottom: 10px;
}

.elevator-content-block h2 {
    font-size: 1.8em;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
    margin-top: 35px;
    margin-bottom: 15px;
    /* Styles matching the inline style from HTML */
    border-bottom: 2px solid #ccc;
}

.elevator-content-block h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 5px;
    border-left: 5px solid #007bff; /* Blue accent bar for main sub-sections */
}

/* --- Specific Heading Colors from HTML --- */
.elevator-content-block h3[style*="color: #007bff"] { /* Drive Systems */
    color: #007bff;
    border-left-color: #007bff;
}

.elevator-content-block h3[style*="color: #4CAF50"] { /* Home Elevators */
    color: #4CAF50;
    border-left-color: #4CAF50;
}

.elevator-content-block h3[style*="color: #FFC107"] { /* Luxury Elevators */
    color: #d8a200; /* Slightly darker gold for readability */
    border-left-color: #FFC107;
}

.elevator-content-block h3[style*="color: #9C27B0"] { /* Style Variant */
    color: #9C27B0;
    border-left-color: #9C27B0;
}

.elevator-content-block h3[style*="color: #607D8B"] { /* Budget Variant */
    color: #607D8B;
    border-left-color: #607D8B;
}

.elevator-content-block h3[style*="color: #FF5722"] { /* Structure/Craft */
    color: #FF5722;
    border-left-color: #FF5722;
}

.elevator-content-block h3[style*="color: #2196F3"] { /* Safety */
    color: #2196F3;
    border-left-color: #2196F3;
}

/* --- Sub-Headings and Paragraphs --- */
.elevator-content-block h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #007bff;
    margin-top: 20px;
    margin-bottom: 8px;
}

.elevator-content-block p {
    margin-bottom: 15px;
    text-align: justify;
}

.elevator-content-block p[style*="font-style: italic"] {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-top: 50px;
}

/* --- Lists (Unordered) --- */
.elevator-content-block ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.elevator-content-block ul li {
    margin-bottom: 8px;
    padding-left: 5px;
}

/* --- Table Styling --- */
.elevator-content-block table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow for visual lift */
}

.elevator-content-block table thead {
    background-color: #e9ecef; /* Light gray for header background */
}

.elevator-content-block table th,
.elevator-content-block table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.elevator-content-block table th {
    font-weight: 700;
    color: #333;
}

.elevator-content-block table tr:nth-child(even) {
    background-color: #f9f9f9; /* Zebra striping for readability */
}

/* --- Responsive Table Container (from HTML) --- */
.elevator-content-block div[style*="overflow-x: auto;"] {
    overflow-x: auto;
}       

/* --- Go to Top Button Styling --- */
#myBtn {display: none;position: fixed;bottom: 7px;right: 3px;z-index: 99;border: none;outline: none;background-color: #ffc90e;color: black;cursor: pointer;padding: 10px;border-radius: 1px;}#myBtn:hover {background-color: green;color: white;}
