      /* CSS RESET & BASE STYLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #f9f9f9;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
        }

        /* HERO / PAGE HEADER BANNER */
        .page-header {
            background: linear-gradient(rgba(0, 34, 68, 0.8), rgba(0, 34, 68, 0.8)), url('1.jpeg') center/cover no-repeat;
            color: #ffffff;
            text-align: center;
            padding: 60px 20px;
        }
        .page-header h1 {
            font-size: 36px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        .page-header p {
            font-size: 18px;
            color: #e2e8f0;
        }

        /* CONTACT CONTAINER GRID */
        .contact-section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        /* CONTACT DETAILS CARD */
        .contact-info-card {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #002244;
        }
        .contact-info-card h2 {
            color: #002244;
            font-size: 24px;
            margin-bottom: 15px;
        }
        .info-divider {
            width: 50px;
            height: 3px;
            background-color: #ff6600;
            margin-bottom: 25px;
        }
        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }
        .info-item .icon {
            font-size: 22px;
            background-color: #f1f5f9;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #ff6600;
            flex-shrink: 0;
        }
        .info-item h4 {
            color: #002244;
            font-size: 16px;
            margin-bottom: 3px;
        }
        .info-item p, .info-item a {
            color: #555;
            font-size: 15px;
            line-height: 1.5;
        }
        .info-item a:hover {
            color: #ff6600;
        }

        /* ENQUIRY FORM */
        .enquiry-form-card {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #ff6600;
        }
        .enquiry-form-card h2 {
            color: #002244;
            font-size: 24px;
            margin-bottom: 15px;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #002244;
            margin-bottom: 6px;
            font-size: 14px;
        }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 11px;
            border: 1px solid #cbd5e1;
            border-radius: 5px;
            font-size: 14px;
            font-family: inherit;
            color: #333;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: #ff6600;
        }
        .submit-btn {
            width: 100%;
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 13px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #e65c00;
        }

        /* GOOGLE MAP SECTION */
        .map-section {
            max-width: 1200px;
            margin: 0 auto 50px auto;
            padding: 0 20px;
        }
        .map-container {
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            line-height: 0;
        }
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: 0;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .contact-section {
                grid-template-columns: 1fr;
            }
        }