/* Stile für den Hauptinhalt der Kontakt- & Preise-Seite */
main {
    flex-grow: 1;
    padding-top: 180px; /* Standard-Abstand für Desktop */
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main h1 {
    text-align: center;
    color: #0d6b7e;
    margin-bottom: 50px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

/* Gemeinsamer Stil für beide Boxen */
.info-box {
    border: 5px solid #0d6b7e;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    width: 100%;
    max-width: 700px;
    box-sizing: border-box; 
}

/* Große Icons oben in den Boxen */
.info-box > i {
    font-size: 3rem;
    color: #0d6b7e;
    margin-bottom: 25px;
    text-align: center;
}

/* Stile für die Kontakt-Box */
.contact-line {
    font-size: 1.2rem;
    margin: 10px 0;
}

.contact-line a {
    color: #0d6b7e;
    text-decoration: none;
    font-weight: normal;
}

.contact-line a:hover {
    text-decoration: underline;
}

.availability-text {
    margin-top: 25px;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Stile für die Preis-Box */
.info-box h2 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #333;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
}

.pricing-list li i {
    font-size: 1.2rem;
    color: #0d6b7e;
    margin-bottom: 10px;
}


/* ========= RESPONSIVE ANPASSUNGEN ========= */

/* NEU: Zusätzliche Regel nur für Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    main {
        /* Spezieller Abstand für Tablets */
        padding-top: 220px; 
    }
}

/* Regel für Smartphones */
@media (max-width: 768px) {
    main {
        /* Größerer Abstand für Smartphones, da das Logo hier oft am höchsten ist */
        padding-top: 250px; 
    }

    main h1 {
        font-size: 1.8rem;
    }

    .info-box {
        padding: 25px;
    }
}