/* Globale Überlauf-Sperre */
html, body {
    overflow-x: hidden; /* Verhindert horizontalen Überlauf */
    margin: 0; /* Entfernt Standard-Margen */
    padding: 0; /* Entfernt Standard-Abstände */
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in der Breite enthalten sind */
}

/* Basisstile (Desktop-First Ansatz) */
.btn {
    border-radius: 40px;
}

.ol {
    font-weight: bold;
}

.extra-space-fl {
    margin-bottom: 40px;
}

.extra-space {
    margin-bottom: 20px;
}

.blue-underline {
    width: 100%;
    height: 2px;
    background-color: #0599D5;
    margin: 10px 0;
}

.btn-primary {
    width: 50%;
    background-color: #0599D5;
    color: #DDDEE2;
    border: none;
}

.img-fluid {
    max-width: 60%;
    height: auto;
    border-radius: 50px;
}

.hero-section {
    background-color: #0599D5;
    color: #fff;
}

.hero-section .btn-hero {
    background-color: white;
    color: #363636;
    border: 1px solid #363636;
    display: block;
    margin: 0 auto;
}

.hero-section .btn-hero:hover {
    color: white;
    background-color: #363636;
    border: 1px solid #363636;
}

.btn-custom-color:hover {
    background-color: #DDDEE2;
    color: black;
}

.navbar {
    background-color: #363636;
    padding: 2px;
}

.contact-section {
    background-color: #DDDEE2;
    padding: 60px 0;
}

/* Allgemeine h2-Stile */
h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.testimonials-section {
    font-size: 12px;
}

.thick-bottom-border {
    border-bottom: 4px solid #a6a6a8;
}

.blue-check::before {
    content: '\2713';
    color: #0596D4;
    padding: 4px;
}

.logo {
    width: 300px;
    height: 100px;
}

.second-col {
    text-align: left;
}

.testimonial-card {
    max-width: 420px;
    margin: 0 auto;
}

.card-title {
    text-align: center;
}

.price {
    font-size: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-body {
    flex: 1 0 auto;
}

.card-footer {
    margin-top: auto;
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.btn {
    width: 50%;
    display: block;
    margin: 0 auto;
}

.card-price {
    height: 600px;
}

.custom-list .custom-blue-check {
    list-style-type: none;
    font-size: 14px;
    position: relative;
    padding-left: 1.5em;
}

.custom-list .custom-blue-check::before {
    content: '\2713';
    color: #0596D4;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0.1em;
}

.small-tx {
    font-size: 9px;
}

.btn-hero {
    background-color: white;
    color: #363636;
    border: 1px solid #363636;
    display: block;
    margin: 0 auto;
}

.btn-hero:hover {
    color: white;
    background-color: #363636;
    border: 1px solid #363636;
}

.btn-hero2 {
    background-color: none;
    color: white;
    border: 1px solid white;
}

.btn-hero2:hover {
    color: #363636;
    border: 1px solid #363636;
}

/* Increase and decrease button */
.input-field {
    width: 50px;
    text-align: center;
}

.btn-decrease, .btn-increase {
    width: 30px;
    height: 30px;
    background-color: #0596D4;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-decrease:hover, .btn-increase:hover {
    background-color: #DDDEE2;
    color: black;
}

.top-price {
    height: 35%;
}

/* Slider button */
.form-switch {
    margin: 10px;
    display: inline-block;
    position: relative;
}

.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #0596D4;
}

.btn-contact {
    background-color: #0599D5;
    color: #fff;
}

.btn-contact:hover {
    background-color: #363636;
    color: white;
}

.footer {
    background-color: #363636;
}

.table1 {
    background-color: #363636 !important;
    color: white;
}

.text-footer {
    text-decoration: none;
    color: white;
}

.text-footer-middle {
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.footer-links {
    font-size: 12px;
}

.brand {
    max-width: auto;
    height: 70px;
    margin: 20px;
}

.mark {
    background-color: black;
    color: white; 
}

.footer-links2 {
    font-size: 10px;
    color: gray;
}

/* Hero Section Styles */
.hero-section .btn-hero {
    width: auto;
    margin-left: 0; /* Für Desktop und größere Bildschirme */
}

.hero-section .text-md-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Button linksbündig ausrichten */
}

.hero-section .text-center {
    text-align: center;
}

/* Mobile Anpassungen */
@media (max-width: 767px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .row {
        display: flex;
        flex-direction: column; /* Reihenfolge der Spalten */
        align-items: center;
    }

    .hero-section .col-md-6:nth-child(2) {
        order: 2; /* Das Bild bleibt in der Mitte */
    }

    .hero-section .col-md-6:nth-child(1) {
        order: 1; /* Text bleibt oben */
    }

    .hero-section .btn-hero {
        width: 80%; /* Kleinere Button-Breite */
        margin-top: 20px; /* Abstand nach oben */
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .hero-section img {
        margin-top: 20px; /* Abstand nach oben für das Bild */
        max-width: 100%;
        border-radius: 10px;
    }

    .navbar-brand img {
        width: 150px;
        height: auto;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }
}
