 /* Basic CSS for demonstration - move this to a 'style.css' file */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        header {
            background-color: #004d99; /* Deep Blue - for the cab company look */
            color: white;
            padding: 15px 0;
            text-align: center;
        }
        .container {
            width: 80%;
            margin: 0 auto;
            max-width: 1200px;
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 5px 10px;
            transition: background-color 0.3s;
        }
        nav ul li a:hover {
            background-color: #ffc107; /* Yellow/Amber - for highlight */
            color: #004d99;
            border-radius: 4px;
        }
        .hero {
            background: url('cab-hero-image.jpg') no-repeat center center/cover; /* Replace with your image */
            color: white;
            text-align: center;
            padding: 100px 20px;
            background-color: #333; /* Fallback color */
        }
        .hero h1 {
            font-size: 3em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .hero p {
            font-size: 1.2em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
        }
        .cta-button {
            display: inline-block;
            background-color: #ffc107; /* Yellow/Amber */
            color: #004d99;
            padding: 12px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            font-size: 1.1em;
            transition: background-color 0.3s;
        }
        .cta-button:hover {
            background-color: #e0a800;
        }
        main {
            padding: 40px 0;
        }
        .section {
            background-color: white;
            padding: 30px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .section h2 {
            color: #004d99;
            text-align: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #ffc107;
            padding-bottom: 10px;
            display: inline-block;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
        }