  /* --- CSS Variablen basierend auf dem Flyer --- */
        :root {
            --bg-dark: #1e1e1e;
            --bg-darker: #121212dd;
            --accent-orange: #f38220; /* Abgeleitet vom "FAHRSCHULE" Schriftzug */
            --text-light: #f5f5f5;
            --text-muted: #aaaaaa;
            --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        /* --- Reset & Basis-Styling --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
           background-image: linear-gradient(to bottom, rgba(30,30,30,0.8) 0%, rgba(30,30,30,0.95) 100%), url('../images/bg.avif');
           background-repeat: no-repeat;
           background-position: center center;
           background-size: cover;
            background-attachment: fixed;
        }

        /* --- Typografie --- */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        h2 {
            color: var(--accent-orange);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        A {color:#fff}

        /* --- Hero Section (Header) --- */
        .hero {
            position: relative;
            min-height: 40vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* Hintergrundbild ähnlich dem Flyer (unscharfe Straße/Autos) */
            text-align: center;
            padding: 2rem;
            padding-bottom: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(30,30,30,0.8) 0%, rgba(30,30,30,0.95) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: fadeIn 1.5s ease-in-out;
        }

        .logo {
            max-width: 350px;
            width: 100%;
            height: auto;
            margin-bottom: 0rem;
            filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin-top: 1rem;
        }

        /* --- Main Content Area --- */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0rem 2rem;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- Card Styling --- */
        .card {
            background-color: var(--bg-darker);
            padding: 2.5rem;
            border-radius: 12px;
            border-top: 4px solid var(--accent-orange);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        /* --- Leistungen --- */
        .services-list {
            list-style: none;
            margin-top: 1rem;
        }

        .services-list li {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }

        .services-list li::before {
            content: '✔';
            color: var(--accent-orange);
            font-weight: bold;
            margin-right: 10px;
        }

        /* --- Kontakt --- */
        .contact-info {
            font-size: 1.1rem;
        }

        .contact-info p {
            margin-bottom: 0.8rem;
        }

        .contact-info strong {
            color: var(--text-light);
        }

        .btn-email {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 12px 24px;
            background-color: var(--accent-orange);
            color: #fff;
            text-decoration: none;
            /*font-weight: bold;*/
            border-radius: 6px;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-email:hover {
            background-color: #e07010;
            box-shadow: 0 4px 15px rgba(243, 130, 32, 0.4);
        }


        .content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-muted);
            margin-bottom:50px;
        }

        /* --- Footer --- */
        footer {
            text-align: center;
            padding: 2rem;
            background-color: var(--bg-darker);
            color: var(--text-muted);
            font-size: 0.9rem;
            border-top: 1px solid #333;
        }



.load_map{
  display: block; position:absolute;
  background-color:var(--accent-orange);
  width:240px;padding:20px;text-align:center;
  margin-top:-150px;
  left:calc(50% - 120px) ;
}

#map_canvas{position:relative;
  .gm-style-iw-ch{display: inline;}
  .gm-style-iw{color:#1e1e1e}
  BUTTON {position: absolute !important;top: -9px;right: -8px;}


}

        /* --- Keyframes --- */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }