@font-face {
    font-family: "Montserrat Variable";
    src: url("../fonts/Montserrat-VariableFont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Merriweather Variable";
    src: url("../fonts/Merriweather-VariableFont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Arial Nova Cond";
    src: url("../fonts/ArialNovaCond.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans Variable";
    src: url("../fonts/OpenSans-VariableFont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Open Sans Variable", sans-serif;

    margin: 0;

}

html {
    overscroll-behavior: none;
    overflow: auto;
}

p,
h1,
h2,
h3,
h4,
u {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
}



header {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

header .logo-section {
    display: flex;
    width: 100%;
    flex-wrap: wrap;

    justify-content: space-between;
    align-items: center;
    height: 70px;
    flex-direction: row;
    padding-left: 3rem;
    padding-right: 3rem;
    box-sizing: border-box;

}

header .logo-section .name {
    font-size: x-large;
    font-weight: bold;
    color: #1d2e4a;
    font-family: 'Merriweather Variable', serif;
    text-decoration: none;

}

@media (max-width: 500px) {
    header .logo-section .name {
        font-size: medium;
    }
}

header .menu-section {
    width: calc(100% - 6rem);
    position: relative;
    height: 50px;
    padding-left: 3rem;
    padding-right: 3rem;
    background-color: #2860a4;
    display: flex;
}

header .menu-section .big-menu {
    width: 100%;
    position: relative;
    align-self: center;
    justify-content: center;

}

header .menu-section .big-menu .sub-menu {
    position: absolute;
    background-color: #2860a4;
    padding-top: 1.05rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

header .menu-section .big-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0;

}

header .menu-section .big-menu .sub-menu li {
    font-size: 0.9rem;
    text-transform: none;
    padding: 0;
    border-bottom: 1px solid #1d2e4a;

}

header .menu-section .big-menu .sub-menu li a {
    height: 100%;
    display: block;
    min-width: 155px;
    font-size: 0.9rem;
    align-self: center;
    padding: 11px 15px;
    font-weight: 400;
}

header .menu-section .big-menu .sub-menu li:hover {
    background-color: #1d2e4a;
}

header .menu-section .big-menu .sub-menu li:hover::after {
    all: initial;
}



header .menu-section .big-menu .sub-menu ul {
    position: absolute;
    padding-top: 0;
    top: 0;
    left: 185px;
    background-color: #2860a4;
    min-width: 10rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}


header .menu-section .big-menu ul {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .menu-section .big-menu li {
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.5s;
    padding-bottom: 0.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

header .menu-section .big-menu li a {
    text-decoration: none;
    color: #faf8f7;
}

header .menu-section .big-menu li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center center;
    width: 100%;
    height: 2px;
    background-color: #f5f5f5;
    opacity: 0;
    transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

header .menu-section .big-menu li:hover::after {
    transform: translateX(-50%) scaleX(1);
    /* volle Breite */
    opacity: 1;
}

header .menu-section .big-menu li:hover {
    transform: scale(1);
}

header .menu-section .big-menu li:hover .minus {
    opacity: 1;
}

header .menu-section .big-menu li:hover .plus {
    opacity: 0;
}

header .menu-section .big-menu li:hover .sub-menu .minus {
    opacity: 0;
}

header .menu-section .big-menu li:hover .sub-menu .plus {
    opacity: 1;
}

header .menu-section .big-menu .sub-menu li:hover .minus {
    opacity: 1;
}

header .menu-section .big-menu .sub-menu li:hover .plus {
    opacity: 0;
}

header .menu-section .big-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

header .menu-section .big-menu li:hover .sub-menu ul {
    opacity: 0;
    visibility: hidden;
}


header .menu-section .big-menu .sub-menu li:hover ul {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1030px) {
    header .menu-section .big-menu {
        display: none;
    }
}

header .hamburger-container {
    position: relative;
    align-self: center;
}

@media (min-width: 1031px) {
    header .hamburger-container {
        display: none;
    }
}

header .hamburger-container .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

header .hamburger-container .hamburger-btn span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #e7e1d2;
    border-radius: 2px;
    transition: 0.3s;
}

header .hamburger-container .hamburger-btn span.open:nth-child(1) {
    transform: rotate(45deg) translate(7px, 5px);
}

header .hamburger-container .hamburger-btn span.open:nth-child(2) {
    opacity: 0;
}

header .hamburger-container .hamburger-btn span.open:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
}

header .hamburger-container .menu {
    position: fixed;
    top: 120px;
    left: 0px;
    width: 100%;
    background-color: #1d2e4a;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s;
    overflow-y: scroll;
    overflow-x: hidden;
}

header .hamburger-container .menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header .hamburger-container .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}


header .hamburger-container .menu ul .submenu a {
    font-size: 1rem;
}

header .hamburger-container .menu ul li {
    margin: 0;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #7a4b3a;
    padding: 0 20px;
    position: relative;
}

header .hamburger-container .menu ul li .menu_btn {
    position: relative;
    border: none;
    color: #faf8f7;
    font-weight: 600;
    background-color: #1d2e4a;
    padding: 0;
    padding-right: 20px;
    font-size: 1.25rem;
    padding-left: 20px;
    border-left: 2px solid #7a4b3a;
    cursor: pointer;
}

header .hamburger-container .menu ul li a {
    text-decoration: none;
    color: #e7e1d2;
    font-weight: 600;
    display: block;
    flex: 1;
    font-size: 1.25rem;
    padding: 10px;
}

header .hamburger-container .menu ul li a:hover {
    color: #7a4b3a;
}

footer {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background-color: #2860a4;
    z-index: 2;
    bottom: 0;
    width: calc(100% - 2rem);
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    position: sticky;
    color: #faf8f7;
}

footer .center {
    display: flex;
    width: 90%;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;

}

footer .center h4 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

footer .links {
    display: flex;
    flex-direction: column;
    flex-basis: 30%;
    min-width: 270px;

}

footer .donation {

    flex-basis: 30%;
    min-width: 270px;
}

footer .contact {
    min-width: 270px;

    flex-basis: 30%;
}

footer .copyright {
    padding-top: 1rem;
    border-top: 1px solid white;
    width: 90%;
    text-align: center;
}

footer .links ul {
    color: #faf8f7;
    padding: 0;
    list-style: none;
    font-style: normal;
    margin: 0;
}

footer .links ul li {
    margin-bottom: 0.5rem;
}

footer .links ul a {
    text-decoration: none;
    color: #faf8f7;
    font-size: 0.9rem;
}

footer .links ul a:hover {
    text-decoration: none;
    color: #1d2e4a;
}

.hidden-top {
    transform: translateY(-70px);
}

.plus {
    opacity: 1;

    margin-left: 0.5rem;
}

.minus {
    opacity: 0;
    position: absolute;
    right: 0;

}

.sub-menu .plus {
    opacity: 1;
    position: absolute;
    right: 8px;
}

.sub-menu .minus {
    right: 8px;
}

.page-content-div {
    position: relative;
    min-height: calc(90vh);
    margin-top: 120px;
    width: calc(100% - 4rem);
    max-width: 1170px;
    align-items: center;
    padding: 2rem;
    padding-bottom: 10vh;

}

.page-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ECEDEF;
    z-index: 3;
}


.main-menu,
.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}


.submenu {
    display: none;
}

.submenu li {
    border-bottom: 0 !important;

}

.menu-btn {
    position: relative;
    border: none;
    color: #faf8f7;
    font-weight: 600;
    background-color: #1d2e4a;
    padding: 0;
    width: 55px;
    font-size: 1.25rem;
    border-left: 2px solid #7a4b3a;
    cursor: pointer;
}

.menu-flex {
    display: flex;
}

@media (max-width: 1030px) {
    .submenu.active {
        display: block;
    }
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #555;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2860a4;
}

.breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .current {
    font-weight: bold;
    color: #222;
}


.lower-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    overflow: auto;
}

.side-menu {
    list-style: none;
    padding-left: 0;
    max-width: 250px;
    flex: 1 1 250px;
}

@media (max-width: 1120px) {
    .side-menu {
        width: 100%;
        max-width: none;
    }
}

.side-menu li a {
    color: rgb(222, 164, 0);
    text-decoration: none;
    font-size: 1.125rem;
    letter-spacing: 1px;
}

.side-menu ul {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;

    padding: 0;
}

.side-menu li {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem;
}

.side-menu ul ul a {

    padding-left: 2rem;
    padding-right: - 2rem;

}

.side-menu ul a {

    padding-left: 1rem;
    padding-right: - 1rem;
}

.side-menu a {
    width: 100%;
    padding: 0.25em;
}

.side-menu li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.side-menu li a:hover {
    display: block;
    width: 100%;
    color: white;
    background-color: #2860a4;
}

.side-menu li .active {
    display: block;
    width: 100%;
    color: white;
    background-color: #2860a4;
}


.custom-page {
    flex: 1 1 760px;
}

.cover-group {
    align-items: start;
    padding: 0;
    cursor: pointer;
}

.hover-group {
    margin: 0;
    padding: 0.25rem;
    padding-left: 0;
    background-color: rgba(40, 96, 164, 0.25);

}

.hover-group .taxonomy-category a {
    text-decoration: none;
    padding: 0.25rem;
    background-color: #2860a4;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cover-group .wp-block-cover__inner-container {
    width: 100%;
    height: 100%;
    padding: 0;
}

.hover-group .wp-block-post-date {
    margin: 0;
    padding: 0;
}

.hover-group .wp-block-post-terms {
    margin: 0;
    padding: 0;
}

.news-headline {
    padding: 0;
    margin: 0;
}

.news-headline a {
    font-size: 1.25rem;
    color: #0073aa;
}

.wp-post-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.open_blog {
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    z-index: 2;
}

.wp-block-post-template {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));

}

.wp-block-post-template .wp-block-post:hover .wp-post-image {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    aspect-ratio: 1;
    object-fit: cover;
}

.wp-block-post {
    position: relative;
}

.wp-block-post-date {
    display: block;
    color: white;
}

.paginator-custom {
    padding: 0;
    display: flex;

}

.paginator-custom .page-numbers {
    padding: 0.5rem;
    font-size: 1rem;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    margin: 0;
    display: block;
}

.wp-block-query-pagination {
    border: 2px solid #999;
    gap: 0;
    padding: 0;
    margin: 0;
    border-radius: 8px;

}

.paginator-custom .current {
    background-color: #999;

}

.paginator-custom .page-numbers {
    color: rgb(222, 164, 0);
    text-decoration: none;
}


.wp-block-query-pagination-next {
    margin: 0;
    padding: 0.5rem;
    font-size: 1rem;
    color: rgb(222, 164, 0);
    text-decoration: none;
}

.wp-block-query-pagination-next:hover {
    background-color: #999;

}

.paginator-custom .page-numbers:hover {
    background-color: #999;
}

.wp-block-query-pagination-previous {
    margin: 0;
    padding: 0.5rem;
    font-size: 1rem;
    color: rgb(222, 164, 0);
    text-decoration: none;
}

.wp-block-query-pagination-previous:hover {
    background-color: #999;

}

.hover-group .taxonomy-category>*:not(:first-child) {
    display: none;
}

.logo-section .links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.logo-section .links a {
    font-size: 0.9rem;
    color: rgb(222, 164, 0);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-section .links a i {
    font-size: 1.5rem;
}

@media (max-width: 660px) {
    .logo-section .links {
        display: none;
    }
}


.search-field {
    border: 1px solid rgb(222, 164, 0);
    border-radius: 8px;
    padding: 0.25rem;
    font-size: 0.9rem;
    width: auto;
    min-width: 30px;
}

.search-field:focus {
    border: 1px solid rgb(222, 164, 0);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.search-field:active {
    border: 1px solid rgb(222, 164, 0);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.search-submit {
    background-color: white;
    color: rgb(222, 164, 0);
    border-radius: 8px;
    padding: 0.25rem;
    border: 0;
    cursor: pointer;

}

.search-submit:hover {
    color: black;
    background-color: rgb(222, 164, 0);
}

.search-results {
    padding: 0;
    margin: 0;
    list-style: none;
}

.search-item {
    padding-bottom: 1rem;
}

.search-item a {
    text-decoration: none;

}

.search-item .search-title {
    padding: 0;
    margin: 0;
    color: rgb(222, 164, 0);
}

.search-item .search-type {
    padding: 0;
    font-size: 0.8rem;
    font-weight: bold;
    color: #222;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #0073aa;
    margin-bottom: 0.5rem;
}

.search-item .highlight {
    color: red;
    font-weight: bold;
}

.search-item .search-excerpt {
    padding: 0;
    margin: 0;
}

.donation {
    display: flex;
    flex-direction: column;
}

.donation p {
    padding: 0;
    margin: 0;
    padding-bottom: 1rem;
}

.donation a {
    padding: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: bold;
    text-align: center;
    display: block;
    color: white;
    background-color: rgb(222, 164, 0);
    border-radius: 32px;
    width: fit-content;
    text-decoration: none;
    font-weight: bold;
    align-self: center;
    transition: all 0.3s ease;
}

.donation a:hover {
    background-color: rgb(255, 195, 0);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(222, 164, 0, 0.5);
}

.calendar-informations {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: start;
    padding: 1rem;
    box-sizing: border-box;

    width: 100%;
    justify-content: center;
    border: 1px solid rgb(222, 164, 0);
    border-radius: 8px;
}

.calendar-informations .left-side {
    display: flex;
    min-width: 300px;
    flex-direction: column;
    gap: 1rem;
}

.calendar-informations .left-side .date-container {
    display: flex;
    gap: 1rem;
    font-size: 1.25rem;
    align-items: center;
}

.calendar-informations .left-side .date-container .date {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}


.calendar-informations .left-side .time-container {
    display: flex;
    gap: 1rem;
    font-size: 1.25rem;
    align-items: center;
}

.calendar-informations .left-side .time-container .time {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.calendar-informations .right-side {
    display: flex;
    min-width: 300px;
    font-size: 1.25rem;
    gap: 0.5rem
}

.calendar-informations .export-side {
    display: flex;
    min-width: 300px;
    font-size: 1.25rem;
    gap: 0.5rem;
    flex-direction: column;
}

.calendar-informations .export-side a {
    color: rgb(222, 164, 0);
    text-decoration: none;
}

.calendar-informations .export-side a:hover {
    color: black;
}

.custom-page .title-image {
    max-height: 400px;
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-page .title-image img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.calendar-page {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
}

.calendar-page .page-title {
    text-align: center;
    width: 100%;
}

.mec-events-event-image {
    max-height: 400px;
    position: relative;
    width: 100%;
    height: 100%;
}

.mec-events-event-image img {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Formularcontainer */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

/* Label */
.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* Input & Textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 4px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

/* Hover & Focus */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    border-color: #0073aa;
    outline: none;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #005f8d;
}

/* Formularcontainer */
.tml {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Label */
.tml label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

/* Input & Password */
.tml input[type="text"],
.tml input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    margin-top: 4px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.tml input[type="text"]:focus,
.tml input[type="password"]:focus {
    border-color: #0073aa;
    outline: none;
}

/* Button */
.tml button[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tml button[type="submit"]:hover {
    background-color: #005f8d;
}

/* Fehler & Erfolg */
.tml-error,
.tml-message {
    font-weight: bold;
    margin-bottom: 10px;
}

.tml-error {
    color: #d93025;
}

.tml-links {
    list-style: none;
    padding: 0;
}

.tml-message {
    color: #28a745;
}


/* Container */
#mailpoet_form_1 {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-sizing: border-box;
}

/* Labels */
#mailpoet_form_1 .mailpoet_segment_label {
    display: block !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
    color: #333 !important;
}

#mailpoet_form_1 .mailpoet_text_label {
    display: block !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
    color: #333 !important;
}

/* Input Felder */
#mailpoet_form_1 input[type="email"],
#mailpoet_form_1 input[type="text"],
#mailpoet_form_1 input[type="password"],
#mailpoet_form_1 textarea,
#mailpoet_form_1 select {
    width: 100% !important;
    padding: 10px 12px !important;
    margin-top: 4px !important;
    margin-bottom: 16px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s !important;
}

/* Hover & Focus Inputs */
#mailpoet_form_1 input[type="email"]:focus,
#mailpoet_form_1 input[type="text"]:focus,
#mailpoet_form_1 input[type="password"]:focus,
#mailpoet_form_1 textarea:focus,
#mailpoet_form_1 select:focus {
    border-color: #0073aa;
    outline: none;
}

/* Checkboxen */
#mailpoet_form_1 .mailpoet_checkbox {
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* Checkbox Label */
#mailpoet_form_1 .mailpoet_checkbox_label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: normal;
    color: #333;
    cursor: pointer;
}

/* Fieldset Legend */
#mailpoet_form_1 fieldset {
    border: none;
    margin: 0;
    padding: 0;
    margin-bottom: 16px;
}

mailpoet_segment_label #mailpoet_form_1 legend {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

/* Button */
#mailpoet_form_1 input[type="submit"],
#mailpoet_form_1 .mailpoet_submit {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 24px !important;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 10px;
}

#mailpoet_form_1 input[type="submit"]:hover,
#mailpoet_form_1 .mailpoet_submit:hover {
    background-color: #005f8d;
}

/* Fehlermeldungen */
#mailpoet_form_1 .parsley-errors-list li {
    color: #d93025;
    font-size: 14px;
    margin-top: 4px;
}

/* Erfolgs- oder Systemmeldungen */
#mailpoet_form_1 .mailpoet_message p {
    color: #28a745;
    font-weight: bold;
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 500px) {
    #mailpoet_form_1 {
        padding: 20px;
    }

    #mailpoet_form_1 input[type="email"],
    #mailpoet_form_1 input[type="text"],
    #mailpoet_form_1 textarea,
    #mailpoet_form_1 select {
        width: 100%;
    }
}

.grecaptcha-badge {
    z-index: 4;
}