/* =============== ANGEBOT SECTION =============== */
body {
    background-color: #fff;
}
.offer {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    text-align: center;
    margin-top: 3.5rem;
}

.offer-container {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-100);
}

.offer-title {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-box {
    background: var(--bg-100);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
}

.offer-price {
    font-size: 1.8rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 0.5rem;
    color: var(--primary-100);
}

.offer-amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent-100);
    background: var(--bg-200);
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.offer-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.offer-list li {
    font-size: 1.2rem;
    color: var(--text-200);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-list li i {
    color: var(--primary-100);
    font-size: 1.5rem;
}

.offer-note {
    font-size: 1rem;
    color: var(--text-200);
    margin-top: 1.5rem;
    font-style: italic;
}

/* =============== BUTTON MITTIG UND ABGERUNDET =============== */
.offer-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: #592131;
    text-decoration: none;
    border-radius: 30px; /* Mehr Abrundung für modernen Look */
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.offer-button:hover {
    background: var(--accent-200);
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =============== ANIMATION =============== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============== RESPONSIVE DESIGN =============== */
@media screen and (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }

    .offer-box {
        padding: 2rem;
    }

    .offer-price {
        font-size: 1.6rem;
    }

    .offer-amount {
        font-size: 2rem;
    }

    .offer-list li {
        font-size: 1rem;
    }

    .offer-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

/* =============== KOSTENÜBERSICHT SECTION =============== */
.costs {
    padding: 5rem 1rem;
    background: var(--bg-100);
}

.costs-container {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--black-color);
}

.costs-title {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 3px solid var(--primary-100);
    padding-bottom: 0.5rem;
}

/* =============== FLEXIBLE 2-SPALTEN-STRUKTUR =============== */
.costs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.costs-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.costs-block {
    padding-left: 1.5rem;
    border-left: 5px solid var(--primary-100);
    transition: all 0.3s ease;
}

.costs-block:hover {
    border-left-color: var(--accent-100);
}

.costs-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-100);
}

.costs-block i {
    font-size: 1.8rem;
    color: var(--primary-100);
}

.costs-block p {
    font-size: 1.1rem;
    color: var(--text-200);
    margin-bottom: 1rem;
}

.costs-block ul {
    list-style: none;
    padding: 0;
}

.costs-block ul li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.costs-block ul li::before {
    content: "✔";
    color: var(--primary-100);
    font-weight: bold;
}

/* =============== CALL TO ACTION =============== */
.costs-conclusion {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--primary-100);
    border-radius: 12px;
    text-align: center;
    color: var(--text-100);
}

.costs-conclusion h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.costs-conclusion p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.costs-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: #592131;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.costs-button:hover {
    background: gray;
    color: #333;
    transform: translateY(-3px);
}

/* =============== RESPONSIVE DESIGN (MOBILE ANPASSUNG) =============== */
@media screen and (max-width: 768px) {
    .costs-grid {
        grid-template-columns: 1fr;
    }

    .costs-title {
        font-size: 2rem;
    }

    .costs-block h3 {
        font-size: 1.6rem;
    }

    .costs-block p,
    .costs-block ul li {
        font-size: 1rem;
    }

    .costs-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

/* =============== KOSTENÜBERSICHT SECTION =============== */
.costs {
    padding: 5rem 1rem;
    background: var(--bg-100);
}

.costs-container {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--black-color);
}

.costs-title {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 3px solid var(--primary-100);
    padding-bottom: 0.5rem;
}

/* =============== FLEXIBLE 2-SPALTEN-STRUKTUR =============== */
.costs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: start;
}

.costs-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* =============== ACCORDION BUTTON =============== */
.accordion {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1rem 0;
    color: var(--primary-100);
    text-align: left;
    border-bottom: 2px solid var(--primary-100);
    transition: all 0.3s ease;
}

.accordion:hover {
    color: var(--accent-100);
}

.accordion h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* =============== ACCORDION CONTENT =============== */
.accordion-content {
    display: none;
    overflow: hidden;
    padding-top: 1rem;
    animation: fadeIn 0.3s ease-in-out;
}

.accordion-content p,
.accordion-content ul {
    font-size: 1.1rem;
    color: var(--text-200);
    margin-bottom: 1rem;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
}

.accordion-content ul li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.accordion-content ul li::before {
    content: "✔";
    color: var(--primary-100);
    font-weight: bold;
}

/* =============== ACTIVE ACCORDION STYLING =============== */
.active .arrow-icon {
    transform: rotate(180deg);
}

/* =============== ANIMATION =============== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============== RESPONSIVE DESIGN =============== */
@media screen and (max-width: 768px) {
    .costs-grid {
        grid-template-columns: 1fr;
    }

    .accordion {
        font-size: 1.6rem;
    }

    .accordion-content p,
    .accordion-content ul li {
        font-size: 1rem;
    }
}

/* =============== HERO SECTION =============== */
.hero {
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #592131, #8b3a4b);
    color: white;
    margin-top: 3.5rem;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* =============== ORDNUNGSAMT INFO SECTION =============== */
.ordnungsamt-info,
.rechtliche-grundlagen,
.kosten-bussgelder {
    padding: 5rem 1rem;
    text-align: center;
    background: #f9f9f9;
}

.ordnungsamt-info h2,
.rechtliche-grundlagen h2,
.kosten-bussgelder h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

/* =============== GRID LAYOUT FÜR KARTEN =============== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 2rem auto;
}

/* =============== STYLE FÜR DIE CARDS =============== */
.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card i {
    font-size: 2.5rem;
    color: #592131;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
}

/* =============== RESPONSIVE DESIGN =============== */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .ordnungsamt-info h2,
    .rechtliche-grundlagen h2,
    .kosten-bussgelder h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.rechtliche-grundlagen {
    padding: 5rem 1rem;
    text-align: center;
    background: #f9f9f9;
}

.rechtliche-grundlagen h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.grundlagen-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.grundlagen-list li {
    font-size: 1.2rem;
    font-weight: bold;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem;
    border-bottom: 1px solid #ddd;
    counter-increment: list-counter;
}

.grundlagen-list li::before {
    content: counter(list-counter) ".";
    font-weight: bold;
    color: #592131;
    font-size: 1.4rem;
}

.grundlagen-list i {
    font-size: 1.5rem;
    color: #592131;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    .rechtliche-grundlagen h2 {
        font-size: 2rem;
    }

    .grundlagen-list li {
        font-size: 1rem;
    }
}
