 /* Enhanced luminous/bright styling with modern elements */
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(to bottom, #e0f7fa, #ffffff);
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        header {
            background: linear-gradient(to right, #00bcd4, #0097a7);
            color: white;
            padding: 30px;
            text-align: center;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
            width: 100%;
        }
        header h1 {
            margin: 0;
            font-size: 2.5em;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }
        nav {
            background: #0097a7;
            padding: 15px;
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
        }
        nav li {
            position: relative;
            margin: 0 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
            padding: 12px 18px;
            display: block;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 5px;
        }
        nav a:hover {
            background: #00bcd4;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        nav ul ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #0097a7;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
            border-radius: 5px;
        }
        nav li:hover > ul {
            display: block;
        }
        nav ul ul li {
            margin: 0;
            width: 220px;
        }
        nav ul ul a {
            padding: 10px 15px;
        }
        section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 20px auto;
            width: 90%;
            text-align: center; /* Center text in sections */
        }
        #search-section {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            padding: 30px;
        }
        #search-section h2 {
            font-size: 1.8em;
            margin-bottom: 20px;
            color: #0097a7;
        }
        #search-input {
            width: 70%;
            padding: 12px;
            border: 2px solid #00bcd4;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        #search-input:focus {
            border-color: #0097a7;
            box-shadow: 0 0 8px rgba(0, 151, 167, 0.3);
            outline: none;
        }
        #search-button {
            padding: 12px 24px;
            background: linear-gradient(to right, #00bcd4, #0097a7);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            font-size: 16px;
            margin-left: 10px;
        }
        #search-button:hover {
            background: linear-gradient(to right, #0097a7, #00bcd4);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        #map-section {
            height: 600px;
            margin: 30px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        #map {
            height: 100%;
        }
        #results-section {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            padding: 30px;
        }
        #results-section h2 {
            font-size: 1.8em;
            margin-bottom: 20px;
            color: #0097a7;
        }
        #results-list {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
        }
        #results-list li {
            padding: 15px;
            border-bottom: 1px solid #e0f7fa;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            border-radius: 8px;
            margin-bottom: 10px;
        }
        #results-list li:hover {
            background: #e0f7fa;
            transform: translateX(5px);
        }
        #error-message {
            color: #ff5252;
            margin-top: 15px;
            font-weight: 500;
        }
        footer {
            background: linear-gradient(to right, #0097a7, #00bcd4);
            color: white;
            text-align: center;
            padding: 30px;
            margin-top: 50px;
            width: 100%;
            box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
        }
        footer a {
            color: #e0f7fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: white;
        }
        /* Responsive design */
        @media (max-width: 768px) {
            #search-input {
                width: 100%;
                margin-bottom: 15px;
            }
            #search-button {
                width: 100%;
                margin-left: 0;
            }
            nav ul {
                flex-direction: column;
            }
            nav li {
                margin: 15px 0;
            }
            section {
                padding: 30px 15px;
            }
            #map-section {
                height: 400px;
            }
        }