body { font-family: 'Inter', sans-serif; background: var(--aloha-gray); color: var(--aloha-dark); line-height: 1.6; margin: 0; }
        .oswald { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

        header.hero-anreise {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://alohasport.at/images/parking-hero.jpg') center/cover;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

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

        .section-title { font-size: 2.5rem; border-left: 8px solid var(--aloha-red); padding-left: 20px; margin-bottom: 40px; }

        /* Info Cards */
        .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
        .info-card { background: white; padding: 30px; border-bottom: 4px solid var(--aloha-red); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .info-card i { color: var(--aloha-red); font-size: 2rem; margin-bottom: 15px; }

        /* Ladestationen Grid */
        .station-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 25px; }
        .station-card { background: white; border-radius: 4px; overflow: hidden; position: relative; transition: transform 0.3s ease; border: 1px solid #ddd; }
        .station-card:hover { transform: translateY(-5px); border-color: var(--aloha-red); }

        .station-header { background: var(--iron-black); color: white; padding: 15px; position: relative; }
        .distance-badge { position: absolute; right: 15px; top: 15px; background: var(--aloha-red); color: white; padding: 5px 10px; font-weight: bold; font-size: 0.8rem; }

        .station-body { padding: 20px; }
        .station-label { font-weight: 900; font-size: 1.1rem; margin-bottom: 5px; color: var(--aloha-dark); }
        .operator { color: #666; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; display: block; }

        .capacity-list { background: #f9f9f9; padding: 10px; border-radius: 4px; margin-top: 15px; }
        .capacity-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 3px 0; border-bottom: 1px solid #eee; }
        .capacity-item:last-child { border-bottom: none; }

        .status-pill { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 0.7rem; font-weight: bold; text-transform: uppercase; }
        .status-available { background: #dcfce7; color: #166534; }
        .status-busy { background: #fee2e2; color: #991b1b; }

        /* Pagination */
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
        .pagination a { padding: 10px 20px; background: white; text-decoration: none; color: var(--iron-black); font-weight: bold; border: 1px solid #ddd; }
        .pagination a.active { background: var(--aloha-red); color: white; border-color: var(--aloha-red); }

        @media (max-width: 768px) { .info-grid { grid-template-columns: 1fr; } }
