body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f2f2f2;
    color: #222;
}

header {
    background-color: #004974;
    color: white;
    padding: 20px 10px;
    text-align: center;
}

.header-content {
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin: 0;
}

.header-content h2 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 10px;
}

.header-content p {
    margin-top: 20px;
    font-size: 18px;
}

section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

.services h3,
.contact h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin-bottom: 10px;
    font-size: 18px;
}

.badge {
    background: red;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 6px;
}

.contact form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #aaa;
    border-radius: 5px;
}

.contact button {
    padding: 12px;
    font-size: 16px;
    background-color: #084F74;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #066094;
}

footer {
    background-color: #084F74;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #ffffff;
    text-decoration: underline;
}

footer a:hover {
    color: #cccccc;
}

.header-logo {
    width: 70%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.facebook-feed {
    text-align: center;
    padding: 40px 20px;
}

.facebook-feed h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .header-logo {
        width: 100vw;
        height: auto;
        padding: 0;
        margin: 0 auto;
    }

    header {
        padding: 0;
    }
}

/* Neuer Gasprüfungs-Teaser */
.gaspruefung-teaser {
    background-color: #ffffff;
    border-left: 5px solid #084F74;
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.gaspruefung-teaser h3 {
    color: #084F74;
    font-size: 24px;
    margin-bottom: 15px;
}

.gaspruefung-teaser p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #084F74;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #066094;
}

@media (max-width: 768px) {
    .gaspruefung-teaser {
        padding: 20px 15px;
        font-size: 16px;
        border-left: 4px solid #084F74;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .gaspruefung-teaser h3 {
        font-size: 20px;
    }

    .cta-button {
        display: inline-block;
        margin-top: 15px;
        padding: 12px 16px;
        font-size: 16px;
        background-color: #084F74;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #066094;
    }
}
