* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 150px;
}
.top-bar {
    background: #1e3a5f;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    transition: transform 0.3s ease-in-out;
}
.top-bar.scrolled-down {
    transform: translateY(-100%);
}
.top-bar.scrolled-up {
    transform: translateY(0);
}
.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar a {
    color: #ffc107;
    text-decoration: none;
    margin: 0 8px;
}
.top-bar a:hover {
    text-decoration: underline;
}
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: transform 0.3s ease-in-out;
}
header.scrolled-up {
    transform: translateY(0);
}
header.scrolled-down {
    transform: translateY(calc(-100% - 44px));
}
.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}
nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
nav a:hover {
    color: #ffc107;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s;
}
nav a:hover::after {
    width: 100%;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #1e3a5f;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.menu-toggle:hover {
    color: #ffc107;
}
.hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23ffc107" opacity="0.05" d="M0 400 Q300 300 600 400 T1200 400 V600 H0 Z"/></svg>') no-repeat center;
    background-size: cover;
}
.hero > * {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}
.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}
.hero-highlight {
    background: rgba(255, 193, 7, 0.2);
    padding: 25px;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto 0;
    border: 2px solid #ffc107;
}
.hero-highlight h2 {
    color: #ffc107;
    font-size: 28px;
    margin-bottom: 15px;
}
.cta-button {
    display: inline-block;
    background: #ffc107;
    color: #1e3a5f;
    padding: 16px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button:hover {
    background: #ffb300;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}
.cta-button.secondary:hover {
    background: white;
    color: #1e3a5f;
}
section {
    padding: 70px 40px;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
h2 {
    font-size: 40px;
    margin-bottom: 15px;
    text-align: center;
    color: #1e3a5f;
}
.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 18px;
}
.services {
    background: #f8f9fa;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-top-color: #ffc107;
}
.service-icon {
    font-size: 50px;
    margin-bottom: 15px;
}
.service-card h3 {
    color: #1e3a5f;
    margin-bottom: 12px;
    font-size: 22px;
}
.service-card p {
    color: #666;
    line-height: 1.6;
}
.why-us {
    background: white;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 40px;
}
.feature {
    text-align: center;
}
.feature-icon {
    width: 75px;
    height: 75px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 34px;
}
.feature h3 {
    color: #1e3a5f;
    margin-bottom: 8px;
    font-size: 20px;
}
.feature p {
    color: #666;
}
.coverage {
    background: #f8f9fa;
}
.coverage-content {
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.coverage h3 {
    color: #1e3a5f;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}
.towns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
    
}
.town-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    border-left: 3px solid #ffc107;
    transition: all 0.3s;
    text-decoration: none;           /* ← Unterstrich weg */
    display: block;                   /* ← Damit der ganze Bereich klickbar ist */
    color: #333;                      /* ← Beibehaltung der Textfarbe */
}

.town-item:hover {
    background: #ffc107;
    color: white;
    transform: translateX(5px);
    text-decoration: none;           /* ← Auch beim Hover keinen Unterstrich */
}
.contact-section {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}
.contact-item {
    text-align: center;
}
.contact-item h3 {
    margin-bottom: 18px;
    color: #ffc107;
    font-size: 22px;
}
.contact-item p {
    margin-bottom: 8px;
}
.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}
.contact-item a:hover {
    color: #ffc107;
}
footer {
    background: #0d1b2a;
    color: white;
    text-align: center;
    padding: 35px;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
}
.footer-links a:hover {
    color: #ffc107;
}
.cookie-banner {
    position: fixed;
    bottom: -400px;
    left: 0;
    right: 0;
    background: #1e3a5f;
    color: white;
    padding: 25px;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cookie-text {
    flex: 1;
}
.cookie-text h3 {
    margin-bottom: 10px;
    color: #ffc107;
}
.cookie-text a {
    color: #ffc107;
}
.cookie-buttons {
    display: flex;
    gap: 15px;
}
.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}
.cookie-btn.accept {
    background: #ffc107;
    color: #1e3a5f;
}
.cookie-btn.accept:hover {
    background: #ffb300;
    transform: scale(1.02);
}
.cookie-btn.decline {
    background: transparent;
    border: 1px solid white;
    color: white;
}
.cookie-btn.decline:hover {
    background: rgba(255,255,255,0.1);
}
@media (max-width: 1024px) {
    body { padding-top: 130px; }
    .top-bar { font-size: 12px; padding: 6px 0; }
    .top-bar-content { padding: 0 20px; flex-direction: column; gap: 5px; text-align: center; }
    header { top: 58px; }
    .header-content { padding: 12px 20px; }
    .menu-toggle { display: block; }
    nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    nav.active { max-height: 400px; }
    nav a { padding: 15px 20px; border-bottom: 1px solid #f0f0f0; text-align: center; }
    nav a::after { display: none; }
    .hero h1 { font-size: 44px; }
    .hero { padding: 80px 30px; }
    section { padding: 60px 30px; }
    h2 { font-size: 36px; }
}
@media (max-width: 768px) {
    body { padding-top: 120px; }
    .top-bar { font-size: 11px; padding: 5px 0; }
    .top-bar-content { padding: 0 15px; }
    header { top: 62px; }
    .hero h1 { font-size: 34px; }
    .hero { padding: 60px 20px; }
    section { padding: 50px 20px; }
    h2 { font-size: 30px; }
    .coverage-content { padding: 30px 20px; }
    .towns-grid { grid-template-columns: 1fr; }
    .cta-button { display: block; margin: 10px auto; width: 80%; }
    .cookie-content { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    h2 { font-size: 26px; }
}