@import url('fonts.css');

/* ==========================================================================
   1. Brand Colors & CSS Variables
   ========================================================================== */
:root {
    --primary-green: #157836;
    --primary-green-hover: #0d5124;
    --text-grey: #4E5050;
    --bg-cloud: #F4F7F6;
    --bg-white: #FFFFFF;
    --brand-mint: #A8E6CF;
    --brand-mint-dark: #81cfb2;
    --brand-mint-light: #e8f9f3;
    --dark-overlay: rgba(21, 120, 54, 0.04);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 4px 20px rgba(78, 80, 80, 0.05);
    --shadow-medium: 0 10px 30px rgba(78, 80, 80, 0.08);
    --shadow-premium: 0 20px 40px rgba(21, 120, 54, 0.06);
}

/* ==========================================================================
   2. Reset & Global Styles
   ========================================================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
    /* Offset for sticky header */
}

body {
    font-family: var(--font-body);
    color: var(--text-grey);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-grey);
    font-weight: 700;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-green-hover);
}

/* Accessibility: Keyboard navigation focus indicators */
*:focus-visible {
    outline: 3px solid var(--brand-mint-dark) !important;
    outline-offset: 2px !important;
}

/* Selection Highlight */
::selection {
    background-color: var(--brand-mint);
    color: var(--primary-green-hover);
}

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
}

.mh-180 {
    min-height: 180px;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(78, 80, 80, 0.05);
    transition: var(--transition-smooth);
    z-index: 1000;
}

.main-header.scrolled {
    box-shadow: var(--shadow-subtle);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.navbar-brand img {
    height: 52px;
    width: auto;
    transition: var(--transition-smooth);
}

.main-header.scrolled .navbar-brand img {
    height: 44px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-grey) !important;
    padding: 10px 15px !important;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: var(--primary-green);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: calc(100% - 30px);
}

.nav-link.active-link {
    color: var(--primary-green) !important;
    font-weight: 600;
}

/* Mobile Toggler Custom Styling */
.navbar-toggler {
    border: none;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.navbar-toggler:hover {
    background-color: var(--bg-cloud);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Premium Navigation Button */
.nav-btn {
    background-color: var(--primary-green);
    color: var(--bg-white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 24px !important;
    box-shadow: 0 4px 15px rgba(21, 120, 54, 0.15);
    transition: var(--transition-smooth);
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background-color: var(--brand-mint-dark);
    color: var(--text-grey) !important;
    box-shadow: 0 4px 15px rgba(129, 207, 178, 0.3);
    transform: translateY(-1px);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero-section {
    background-color: var(--bg-white);
    padding-top: 110px;
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-title span {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(168, 230, 207, 0.4);
    z-index: -1;
    border-radius: 4px;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-grey);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 120, 54, 0.05) 0%, rgba(21, 120, 54, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Floating Trust Badge */
.trust-badge-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 230, 207, 0.5);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    max-width: calc(100% - 48px);
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    background-color: var(--brand-mint-light);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.trust-badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

/* ==========================================================================
   5. Das "Pflege Antwort Prinzip" (Timeline)
   ========================================================================== */
.principle-section {
    background-color: var(--bg-cloud);
}

.section-tag {
    display: inline-block;
    background-color: var(--brand-mint-light);
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

/* Timeline Cards */
.timeline-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(78, 80, 80, 0.05);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--brand-mint);
    border-radius: 20px 20px 0 0;
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-card:hover::before {
    background: var(--primary-green);
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-mint);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.timeline-card:hover .timeline-number {
    color: var(--primary-green);
    transform: scale(1.05);
}

/* ==========================================================================
   6. Services & USP
   ========================================================================== */
.services-section {
    background-color: var(--bg-white);
}

.service-card {
    background: var(--bg-cloud);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.service-card.highlighted {
    background: var(--bg-white);
    border-color: var(--brand-mint);
    box-shadow: var(--shadow-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-green);
    color: var(--bg-white) !important;
}

.service-icon-box i {
    font-size: 1.75rem;
    color: var(--primary-green);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box i {
    color: var(--bg-white);
}

/* USP Section (Kinder-Pflege) */
.usp-section {
    background-color: var(--bg-cloud);
    border-top: 1px solid rgba(21, 120, 54, 0.05);
    border-bottom: 1px solid rgba(21, 120, 54, 0.05);
}

.usp-box {
    background: var(--bg-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(168, 230, 207, 0.5);
}

.usp-content {
    padding: 60px;
}

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

.usp-image {
    min-height: 100%;
    object-fit: cover;
    background-position: center;
}

/* Checkmark List styles */
.checkmark-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.checkmark-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.checkmark-list li::before {
    content: "\f00c";
    /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* ==========================================================================
   7. Zusatz-Entlastungspaket
   ========================================================================== */
.additional-section {
    background-color: var(--bg-white);
}

.additional-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(78, 80, 80, 0.04);
    transition: var(--transition-smooth);
}

.additional-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(168, 230, 207, 0.8);
}

.additional-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.additional-card-icon {
    width: 48px;
    height: 48px;
    background-color: var(--brand-mint-light);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ==========================================================================
   8. Region, Trust & Contact Form
   ========================================================================== */
.contact-region-section {
    background-color: var(--bg-cloud);
}

/* Trust Elements */
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(78, 80, 80, 0.03);
    height: 100%;
    transition: var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    width: 52px;
    height: 52px;
    background-color: var(--brand-mint-light);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Region Badges */
.region-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.region-badge {
    background-color: var(--bg-white);
    color: var(--text-grey);
    border: 1px solid rgba(78, 80, 80, 0.1);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.region-badge:hover {
    background-color: var(--primary-green);
    color: var(--bg-white);
    border-color: var(--primary-green);
    transform: scale(1.03);
}

/* Contact Card Form */
.contact-card {
    background: var(--bg-white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(168, 230, 207, 0.4);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(78, 80, 80, 0.15);
    background-color: var(--bg-cloud);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-grey);
    transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--bg-white);
    border-color: var(--brand-mint-dark);
    box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.25);
    color: var(--text-grey);
}

.form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.form-check-label {
    font-size: 0.85rem;
    color: var(--text-grey);
    line-height: 1.4;
}

/* Buttons */
.btn-premium {
    background-color: var(--primary-green);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(21, 120, 54, 0.2);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.btn-premium:hover {
    background-color: var(--brand-mint-dark);
    color: var(--text-grey);
    box-shadow: 0 6px 25px rgba(129, 207, 178, 0.4);
    transform: translateY(-2px);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--primary-green);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    background-color: var(--bg-cloud);
    border-color: var(--primary-green-hover);
    color: var(--primary-green-hover);
    transform: translateY(-2px);
}

/* Custom Checkbox styles */
.form-check-input {
    cursor: pointer;
}

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(168, 230, 207, 0.25);
    border-color: var(--brand-mint-dark);
}

/* Form Status Styles */
.form-status {
    display: none;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.form-status.success {
    display: block;
    background-color: var(--brand-mint-light);
    color: var(--primary-green-hover);
    border: 1px solid var(--brand-mint-dark);
}

.form-status.error {
    display: block;
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

/* ==========================================================================
   9. Footer Styling
   ========================================================================== */
.main-footer {
    background-color: var(--text-grey);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--primary-green);
}

.main-footer h5 {
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brand-mint);
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    /* makes the dark logo white */
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--brand-mint);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--brand-mint);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--brand-mint);
}

/* ==========================================================================
   10. Scroll entrance animations classes (Storytelling)
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Slide Up (default) */
.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}

/* Slide Left */
.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

/* Slide Right */
.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

/* Zoom In */
.animate-on-scroll.zoom-in {
    transform: scale(0.92);
}

/* Visible target states */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delay classes for smoother UX */
.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

/* Parallax element smoothing */
.hero-image-wrapper img,
.usp-image {
    will-change: transform;
    transition: transform 0.1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.usp-box .col-lg-5 {
    overflow: hidden;
    position: relative;
}

/* Back to Top button styling */
#backToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    width: 48px;
    height: 48px;
    background-color: var(--primary-green);
    color: var(--bg-white);
    border: none;
    outline: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 120, 54, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

#backToTopBtn:hover {
    background-color: var(--brand-mint-dark);
    color: var(--text-grey);
    transform: translateY(-3px);
}

/* ==========================================================================
   11. FAQ Accordion Styling (Neu)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-white);
}

.accordion-item {
    border: 1px solid rgba(78, 80, 80, 0.08);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(21, 120, 54, 0.15);
    box-shadow: var(--shadow-medium);
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-grey);
    background-color: var(--bg-white);
    padding: 20px 24px;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background-color: rgba(21, 120, 54, 0.02);
}

.accordion-button::after {
    filter: grayscale(1) opacity(0.6);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

.accordion-body {
    padding: 20px 24px;
    line-height: 1.7;
    color: var(--text-grey);
    background-color: var(--bg-white);
    border-top: 1px solid rgba(78, 80, 80, 0.05);
}

/* ==========================================================================
   12. Cookie Consent Banner & Modal Custom Styling
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-white);
    border: 1px solid rgba(21, 120, 54, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    transform: translateY(calc(100% + 40px));
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
    max-width: 500px;
}

@media (min-width: 768px) {
    .cookie-banner {
        left: 30px;
        right: auto;
    }
}

.cookie-banner.show {
    transform: translateY(0);
    visibility: visible;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text {
    font-size: 0.88rem;
    color: var(--text-grey);
    margin-bottom: 16px;
    line-height: 1.5;
}

.cookie-btn-container {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cookie-btn {
    font-size: 0.85rem !important;
    padding: 8px 20px !important;
}

/* Legal Modals Styling */
.legal-modal .modal-header {
    background-color: var(--bg-cloud);
    border-bottom: 1px solid rgba(78, 80, 80, 0.08);
}

.legal-modal .modal-title {
    color: var(--primary-green);
    font-weight: 700;
}

.legal-modal .modal-body {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.7;
    max-height: 70vh;
    overflow-y: auto;
}

.legal-modal h4 {
    color: var(--primary-green);
    font-size: 1.15rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-modal p,
.legal-modal ul {
    margin-bottom: 16px;
}