/* Farbvariablen aus style1.css */
:root {
    --sage-green: #B4C4AE;
    --sand-color: #E0D6C4;
    --white: #FFFFFF;
    --light-grey: #f4f4f4;
    --dark-text: #333333;
    --accent-color: var(--sage-green);

    --salbei-gruen: var(--sage-green);
    --weiss: var(--white);
    --schwarz: var(--dark-text);
    --hintergrund-hell: var(--light-grey);
    --text-dunkel: var(--dark-text);

    --abgerundet: 25px;
    --abgerundet-full: 50%;
    --uebergang: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dunkel);
    line-height: 1.6;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--abgerundet);
    border: 2px solid var(--weiss);
    color: var(--weiss);
    font-weight: bold;
    transition: var(--uebergang);
    text-decoration: none;
}

.button:hover {
    background-color: var(--weiss);
    color: var(--salbei-gruen);
}

/* Navbar (nur zur Demonstration) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: var(--weiss);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-weight: bold;
    font-size: 1.5em;
    color: var(--schwarz);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    color: var(--weiss);
}

/* Hintergrundbild-Container */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    overflow: hidden;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transform: translateY(0);
    transition: transform 0.2s ease-out;
}

/* Inhalt */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 20px;
    max-width: 900px;
    text-align: center;
}

.hero-content h1 {
    color: var(--weiss);
    font-size: 2.8em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5em;
    line-height: 1.3;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .navbar {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5em;
    }

    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}


/* Sections mit Fotos und Text */
.service-section {
    padding: 60px 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--weiss);
    padding: 30px;
    border-radius: var(--abgerundet);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform var(--uebergang);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item-reversed {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

.service-item-image img {
    width: 100%;
    height: auto;
    border-radius: var(--abgerundet-full);
    border: 5px solid var(--salbei-gruen);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-item-content {
    flex: 2;
}

.service-item-content h3 {
    font-size: 1.8em;
    margin-top: 0;
    color: var(--salbei-gruen);
}

.service-item-text {
    /* Anfangstext anzeigen */
    display: block;
}

.service-item-text.expanded {
    /* Vollständigen Text anzeigen */
    display: block;
}

.service-item-text .vollstaendiger-text {
    display: none;
    /* Zusätzlichen Text verstecken */
}

.service-item-text.expanded .vollstaendiger-text {
    display: inline;
    /* Zusätzlichen Text einblenden */
}

/* Kontaktformular */
.kontakt-section {
    padding: 60px 20px;
    background-color: var(--salbei-gruen);
    color: var(--weiss);
    text-align: center;
    border-radius: var(--abgerundet) var(--abgerundet) 0 0;
}

.kontakt-section h2 {
    color: var(--weiss);
    font-size: 2.5em;
}

.kontakt-form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-form input,
.kontakt-form textarea {
    padding: 15px;
    border-radius: var(--abgerundet);
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--schwarz);
}

.kontakt-form textarea {
    min-height: 150px;
}

.kontakt-form button {
    background-color: var(--weiss);
    color: var(--salbei-gruen);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: var(--uebergang);
}

.kontakt-form button:hover {
    background-color: var(--hintergrund-hell);
}

/* Footer */
.footer {
    background-color: var(--schwarz);
    color: var(--weiss);
    padding: 20px;
    text-align: center;
    border-radius: 0 0 var(--abgerundet) var(--abgerundet);
}

/* Media Queries für mobile Ansicht */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--weiss);
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .nav-links.active {
        max-height: 500px;
        /* Muss groß genug sein, um alle Links zu zeigen */
    }

    .nav-links.is-active {
        display: flex;
        transform: translateX(0);
        max-height: none;
    }

    .nav-links a {
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .burger-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-item-reversed {
        flex-direction: column;
    }

    .service-item-image {
        margin-bottom: 20px;
    }

    .service-item-image img {
        width: 70%;
    }
}

/* Media Queries für Desktop-Ansicht */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        box-shadow: none;
        padding: 0;
        max-height: none;
    }

    .nav-links a {
        border-bottom: none;
        padding: 0 15px;
    }

    .burger-menu {
        display: none;
    }

    .navbar {
        padding: 15px 50px;
    }
}

/* --- style1.css Komponenten, angepasst und hinzugefügt --- */
/* HEADER & NAVIGATION */
.main-header {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sage-green);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* HAMBURGER-MENÜ - NUR FÜR MOBILE */
.hamburger-menu {
    display: none;
    /* Auf Desktop ausgeblendet */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-text);
    transition: all 0.3s ease;
}

/* Animation des Hamburger-Menüs beim Öffnen */
.hamburger-menu.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* RESPONSIFES LAYOUT FÜR MOBILE */
@media (max-width: 768px) {
    .hamburger-menu.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        padding-top: 80px;
        text-align: center;
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
    }

    .nav-links.is-active,
    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
        font-size: 1.5rem;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .pricing-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ANIMATIONEN */
/* Standard-Zustand (unsichtbar) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* End-Zustand (sichtbar) */
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Spezifische Animationen */
.fade-in-up {
    transform: translateY(50px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

/* Hover-Effekte */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-info {
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: scale(1.02);
}

/* Grundlegende Stil-Einstellungen */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

.section-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.light-bg {
    background-color: var(--light-grey);
}

h1,
h2,
h3 {
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Header & Navigation */
.main-header {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sage-green);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--sage-green);
}

/* Hero-Sektion */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    color: var(--dark-text);
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--sage-green);
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Leistungs-Sektion */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3 {
    color: var(--sage-green);
}

/* Preis- & Kontakt-Sektion */
.pricing-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.pricing-table ul {
    list-style: none;
}

.pricing-table li {
    background-color: var(--white);
    padding: 15px;
    margin-bottom: 10px;
    border-left: 3px solid var(--sage-green);
}

.contact-info {
    padding: 30px;
    background-color: var(--sage-green);
    color: var(--white);
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--white);
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--sand-color);
}

/* Über mich Sektion */
.timeline {
    list-style: none;
    margin-top: 40px;
    padding-left: 20px;
    border-left: 2px solid var(--sage-green);
}

.timeline li {
    padding: 10px 20px;
    position: relative;
    margin-bottom: 20px;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    width: 15px;
    height: 15px;
    background-color: var(--sand-color);
    border-radius: 50%;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 20px;
    background-color: var(--dark-text);
    color: var(--white);
}

.main-footer a {
    color: var(--sage-green);
    text-decoration: none;
}

/* Responsivität */
@media (max-width: 768px) {
    .pricing-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Stil für den Kontaktbereich */
.contact-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--sand-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 5px rgba(180, 196, 174, 0.5);
}

.submit-button {
    background-color: var(--sage-green);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #9fb399;
    /* Dunkleres Salbeigrün */
    transform: translateY(-2px);
}

.form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Stil für Erfolgs- und Fehlermeldungen */
.success-message {
    background-color: #d4edda;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
}

/* Zusätzliche Kontaktdaten */
.contact-details {
    text-align: center;
    margin-top: 40px;
}

/* ---- Über mich Seite ---- */
.about-hero {
    text-align: center;
    padding: 60px 20px;
}

.about-content {
    margin-top: 40px;
}

.about-image-text-grid {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.profile-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
    line-height: 1.8;
}

.sub-heading {
    text-align: center;
    color: var(--sage-green);
    margin-bottom: 40px;
    position: relative;
}

.sub-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--sand-color);
    margin: 10px auto 0;
}

/* Timeline-Stile (überarbeitet für diese Seite) */
.timeline {
    list-style: none;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background-color: var(--sand-color);
}

.timeline li {
    position: relative;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -70px;
    top: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--sage-green);
}

.timeline-content {
    background-color: var(--light-grey);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 15px;
    width: 15px;
    height: 15px;
    background-color: var(--sand-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--sage-green);
}

/* Anpassungen für mobile Ansicht */
@media (max-width: 768px) {
    .about-image-text-grid {
        flex-direction: column;
        gap: 30px;
    }

    .about-text,
    .about-image {
        flex: auto;
    }

    .profile-photo {
        max-width: 100%;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-year {
        position: static;
        margin-bottom: 10px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-content::before {
        display: none;
    }
}

/* Button */
.read-more {
    border: none;
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background 0.3s;
}

.read-more:hover {
    background: #333;
}

/* Modal Overlay */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Hintergrund leicht sichtbar */
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Modal Box */
.modal-content {
    background: #fff;
    border-radius: 2rem;
    padding: 2rem 3rem;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeInUp 0.4s ease;
}

/* Close Button */
.modal-content .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #444;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-content .close:hover {
    color: #000;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mindmap-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--sage-green);
}

/* Container */
.mindmap-stage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

/* Bubbles */
.bubble {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(180deg, var(--white), var(--light-grey));
    border: 2px solid var(--sand-color);
    border-radius: 999px;

    padding: 16px 20px;
    min-height: 70px;
    width: 100%;
    max-width: 260px;

    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-text);

    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.bubble:hover,
.bubble:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    border-color: var(--sage-green);
}

/* Details verstecken */
.bubble__details {
    display: none;
    font-size: .95rem;
    line-height: 1.4;
    margin-top: .6rem;
    color: var(--dark-text);
}

/* Wenn geöffnet */
.bubble.is-expanded {
    background: var(--light-grey);
    border-color: var(--sage-green);
    transform: scale(1.05);
}

.bubble.is-expanded .bubble__details {
    display: block;
}

/* Mobile Ansicht */
@media (max-width: 640px) {
    .mindmap-stage {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bubble {
        max-width: 90%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .bubble__details {
        font-size: 0.95rem;
    }
}

:root {
    --salbei-gruen: #a2b9a7;
    --salbei-gruen-hell: #b4c4a6;
    --salbei-gruen-dunkel: #8d9c8c;
    --weiss: #ffffff;
    --schwarz: #333333;
    --hintergrund-hell: #f0f4f0;
    --text-dunkel: #555;
    --abgerundet: 25px;
    --abgerundet-full: 50%;
    --uebergang: 0.3s ease;
}

/* Allgemeine Stile */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--hintergrund-hell);
    color: var(--text-dunkel);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: var(--schwarz);
}

a {
    text-decoration: none;
    color: var(--salbei-gruen);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sub-heading {
    text-align: center;
    color: var(--salbei-gruen);
    margin-bottom: 40px;
    position: relative;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--abgerundet);
    border: 2px solid var(--salbei-gruen);
    color: var(--salbei-gruen);
    font-weight: bold;
    transition: var(--uebergang);
}

.button:hover {
    background-color: var(--salbei-gruen);
    color: var(--weiss);
}

.mehr-link {
    color: var(--salbei-gruen);
    font-weight: bold;
    cursor: pointer;
    transition: var(--uebergang);
}

.mehr-link:hover {
    opacity: 0.8;
}

/* Navigationsleiste */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--weiss);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-weight: bold;
    font-size: 1.5em;
    color: var(--schwarz);
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--weiss);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transition: max-height 0.5s ease-in-out;
    overflow: hidden;
    max-height: 0;
}

.nav-links.is-active {
    display: flex;
    max-height: 500px;
}

.nav-links a {
    padding: 15px 20px;
    color: var(--schwarz);
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.nav-links a:last-child {
    border-bottom: none;
}

.nav-links a:hover {
    color: var(--salbei-gruen);
    background-color: var(--hintergrund-hell);
}

.hamburger-menu {
    display: block;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 25px;
    height: 21px;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--schwarz);
    margin: 5px 0;
    transition: var(--uebergang);
}

/* Burger zu X-Transformation */
.hamburger-menu.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}



/* Einblende-Animationen */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.in-view,
.slide-in-right.in-view,
.slide-in-up.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Services Sektion */
.service-section {
    padding: 60px 20px;
    position: relative;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--weiss);
    padding: 30px;
    border-radius: var(--abgerundet);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform var(--uebergang), background-color var(--uebergang);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item-reversed {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
}

.service-item-image img {
    width: 100%;
    height: auto;
    border-radius: var(--abgerundet-full);
    border: 5px solid var(--salbei-gruen);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-item-content {
    flex: 2;
}

.service-item-content h3 {
    font-size: 1.8em;
    margin-top: 0;
    color: var(--salbei-gruen);
}

.service-item-text {
    display: block;
}

.service-item-text.expanded {
    display: block;
}

.service-item-text .vollstaendiger-text {
    display: none;
}

.service-item-text.expanded .vollstaendiger-text {
    display: inline;
}

/* FAQs-Bereich */
.services-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background-color: var(--weiss);
    padding: 25px;
    border-radius: var(--abgerundet);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform var(--uebergang);
}

.service-card h3 {
    margin-top: 0;
    color: var(--salbei-gruen);
    font-size: 1.2em;
}

.service-card .read-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--salbei-gruen);
    color: var(--weiss);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--abgerundet-full);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--uebergang);
}

.service-card .read-more:hover {
    background-color: #9fb399;
    transform: scale(1.1);
}

/* Modals */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: var(--weiss);
    padding: 40px;
    border-radius: var(--abgerundet);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.4s ease-out;
}

.modal-content .close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--schwarz);
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
}

.modal-content .close:hover {
    color: var(--salbei-gruen);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Stil für den Kontaktbereich */
.contact-form-container {
    background-color: var(--weiss);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-dunkel);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--salbei-gruen);
    background-color: #f9f9f9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--salbei-gruen);
    box-shadow: 0 0 5px rgba(180, 196, 174, 0.5);
}

.submit-button {
    background-color: var(--salbei-gruen);
    color: var(--weiss);
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background-color: #9fb399;
    transform: translateY(-2px);
}

.form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: var(--schwarz);
    color: var(--weiss);
    padding: 20px;
    text-align: center;
}

.social-media a {
    color: var(--weiss);
    font-size: 1.5em;
    margin: 0 10px;
    transition: color var(--uebergang);
}

.social-media a:hover {
    color: var(--salbei-gruen);
}

/* Media Queries für mobile Ansicht */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--weiss);
        box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .nav-links.is-active {
        max-height: 500px;
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-item-reversed {
        flex-direction: column;
    }

    .service-item-image {
        margin-bottom: 20px;
    }

    .service-item-image img {
        width: 70%;
    }
}

/* Media Queries für Desktop-Ansicht */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        box-shadow: none;
        padding: 0;
        max-height: none;
    }

    .nav-links a {
        border-bottom: none;
        padding: 0 15px;
    }

    .hamburger-menu {
        display: none;
    }

    .navbar {
        padding: 15px 50px;
    }

    /* Desktop-Anpassungen für Service-Sektion */
    .service-item {
        flex-direction: row;
        gap: 60px;
        align-items: center;
        margin: 0 auto 60px;
        max-width: 1000px;
    }

    .service-item-reversed {
        flex-direction: row-reverse;
    }

    .service-item-image {
        flex-shrink: 0;
        width: 350px;
        min-width: 350px;
        max-width: 350px;
    }

    .service-item-image img {
        width: 100%;
    }

    .service-item-content {
        flex-grow: 1;
    }
}

/* ... Ihr bestehendes CSS hier ... */

.highlight {
    background-color: #fce83a;
    padding: 2px 4px;
    border-radius: 4px;
}

.logo-section {
    background-color: #f8f9fa;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.reiki-logo {
    max-width: 150px;
    height: auto;
}

.logo-text {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

@media (min-width: 768px) {
    .logo-container {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}

/* Praxis Info Section - Mit der korrekten Farbpalette */
.praxis-info-section {
    background: var(--hellgrau, #f8f8f8);
    padding: 60px 20px;
    position: relative;
}

.praxis-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.praxis-info-card {
    background: var(--weiss, #ffffff);
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--schatten, rgba(0, 0, 0, 0.1));
    overflow: hidden;
    border: 1px solid rgba(180, 196, 174, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.praxis-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.praxis-header {
    background: linear-gradient(135deg, var(--dunkles-salbei-gruen, #4a7c59) 0%, var(--salbei-gruen, #a8b8a0) 100%);
    padding: 35px 40px;
    color: var(--weiss, #ffffff);
    position: relative;
    overflow: hidden;
}

.praxis-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.praxis-header h2 {
    margin: 0;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.praxis-header h2 i {
    font-size: 1.6rem;
    color: var(--sand-color, #E0D6C4);
}

.praxis-divider {
    height: 3px;
    width: 90px;
    background: rgba(224, 214, 196, 0.7);
    margin-top: 18px;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

.praxis-content {
    padding: 45px;
}

.praxis-location {
    display: flex;
    gap: 35px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-green, #B4C4AE), var(--salbei-gruen, #a8b8a0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--weiss, #ffffff);
    font-size: 2rem;
    box-shadow: 0 6px 15px rgba(180, 196, 174, 0.3);
}

.location-details {
    flex: 1;
    min-width: 300px;
}

.location-details h3 {
    color: var(--dark-text, #333333);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.location-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--dunkles-salbei-gruen, #4a7c59);
    border-radius: 2px;
}

.address {
    color: var(--dunkles-salbei-gruen, #4a7c59);
    font-size: 1.15rem;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    background: rgba(180, 196, 174, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--sage-green, #B4C4AE);
}

.address i {
    font-size: 1.3rem;
    color: var(--dunkles-salbei-gruen, #4a7c59);
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-grey, #f4f4f4);
    border-radius: 10px;
    border-left: 5px solid var(--sage-green, #B4C4AE);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.feature:hover {
    background: rgba(180, 196, 174, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature i {
    color: var(--dunkles-salbei-gruen, #4a7c59);
    font-size: 1.4rem;
    margin-top: 5px;
    min-width: 24px;
}

.feature h4 {
    color: var(--dark-text, #333333);
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 600;
}

.feature p {
    color: var(--dark-text, #333333);
    margin: 6px 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.feature-note {
    display: block;
    color: var(--dunkles-salbei-gruen, #4a7c59);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 8px;
    font-weight: 500;
}

.praxis-notice {
    background: linear-gradient(135deg,
            rgba(224, 214, 196, 0.2) 0%,
            rgba(180, 196, 174, 0.15) 100%);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    border: 2px solid rgba(180, 196, 174, 0.3);
    position: relative;
    overflow: hidden;
}

.praxis-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(224, 214, 196, 0.1);
    border-radius: 50%;
}

.notice-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dunkles-salbei-gruen, #4a7c59), var(--salbei-gruen, #a8b8a0));
    color: var(--weiss, #ffffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 15px rgba(74, 124, 89, 0.3);
    position: relative;
    z-index: 1;
}

.praxis-notice p {
    flex: 1;
    color: var(--dark-text, #333333);
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
    min-width: 300px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.praxis-button {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--dunkles-salbei-gruen, #4a7c59), var(--salbei-gruen, #a8b8a0));
    color: var(--weiss, #ffffff);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
    position: relative;
    z-index: 1;
}

.praxis-button:hover {
    background: linear-gradient(135deg, var(--salbei-gruen, #a8b8a0), var(--dunkles-salbei-gruen, #4a7c59));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.4);
}

.praxis-button i {
    font-size: 1.1rem;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .praxis-location {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-icon {
        align-self: center;
    }

    .location-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .praxis-content {
        padding: 30px;
    }

    .praxis-header {
        padding: 30px;
    }

    .praxis-header h2 {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .praxis-header h2 i {
        align-self: flex-start;
    }

    .praxis-notice {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }

    .praxis-notice p {
        min-width: auto;
        font-size: 1.1rem;
    }

    .praxis-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .location-details h3 {
        font-size: 1.4rem;
    }

    .address {
        font-size: 1.05rem;
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .praxis-info-section {
        padding: 40px 15px;
    }

    .praxis-content {
        padding: 25px;
    }

    .praxis-header {
        padding: 25px;
    }

    .location-features {
        gap: 20px;
    }

    .feature {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .feature i {
        margin-top: 0;
        font-size: 1.6rem;
    }

    .location-details h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .praxis-notice {
        padding: 25px;
    }

    .notice-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

/* Custom Modal Styling - Seminar Specific */
.seminar-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    /* Scrollable modal container */
    background-color: rgba(0, 0, 0, 0.4);
    /* Darker overlay for better contrast */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    align-items: flex-start !important;
    /* Start from top prevents clipping */
    justify-content: center;
    /* Center horizontally */
    padding: 20px 0;
    /* Add wrapper padding */
}

/* Show state handled by JS */
.seminar-modal[style*="display: flex"],
.seminar-modal[style*="display: block"] {
    opacity: 1;
    visibility: visible;
    display: flex !important;
    /* Ensure flex is used for alignment */
}

.seminar-modal .modal-content {
    background-color: #ffffff;
    margin: 60px auto;
    /* 60px top margin provides the "space at top" */
    padding: 80px 50px 60px;
    /* Increased top padding to 80px */
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.seminar-close {
    position: absolute !important;
    /* Force absolute position */
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: var(--light-grey) !important;
    /* Subtle background */
    border-radius: 50% !important;
    color: var(--dark-text) !important;
    font-size: 24px !important;
    font-weight: bold !important;
    cursor: pointer;
    border: none !important;
    z-index: 20;
    /* Inside modal content */
    transition: all 0.3s ease;
    line-height: 1;
    opacity: 1 !important;
    /* Ensure visibility */
}

.seminar-close:hover {
    background-color: var(--dunkles-salbei-gruen) !important;
    color: white !important;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.seminar-modal .modal-body h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dunkles-salbei-gruen);
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sand-color);
    line-height: 1.1;
    display: block;
    /* Ensure it takes full width */
}

.seminar-modal .modal-body p {
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: #333;
    line-height: 1.8;
}

/* Smart Button Styling - Seminar Specific */
.btn-seminar {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 14px 35px !important;
    background: linear-gradient(135deg, var(--dunkles-salbei-gruen) 0%, #3a6347 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.95rem !important;
    width: auto !important;
    /* Override explicit width from conflicting styles */
    height: auto !important;
    /* Override explicit height */
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-seminar::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-seminar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.5);
    background: linear-gradient(135deg, #3a6347 0%, var(--dunkles-salbei-gruen) 100%) !important;
}

.btn-seminar:hover::after {
    transform: translateX(5px);
}

.btn-seminar:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

@media (max-width: 768px) {
    .seminar-modal .modal-content {
        padding: 80px 25px 40px;
        /* More top padding for close button */
        margin: 0;
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
    }

    .seminar-modal .modal-body h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .seminar-close {
        top: 20px !important;
        right: 20px !important;
        position: absolute !important;
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #4a7c59;
    /* --dunkles-salbei-gruen fallback if not accessible */
    background-color: var(--dunkles-salbei-gruen);
    color: var(--weiss);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--salbei-gruen);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}