:root {
    --main-color: #87ad25;
    --accent-color: #f39b02;
    --link-color: #5db0c6;
    --grey-color: #efefef;
    --white-color: #ffffff;
    --text-color: #747474;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    font-display: swap;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--grey-color);
}

main {
    width: 100%;
}

section {
    padding: 3rem 0;
}

h1, h2, h3 {
    font-family: 'Overlock';
    margin-bottom: 20px;
    color: var(--main-color);
}

h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 35px;
    line-height: 1.14;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--main-color);
}

img {
    border-radius: 8px;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    gap: 20px;
    padding-left: 0;
}

#beratung button[type="submit"] {
    display: block;
}

.main-copy {
    background: var(--main-color);
    color: var(--white-color);
}

.main-copy h2, .main-copy h3, .main-copy ul {
    color: var(--white-color);
}

.custom-icon {
    color: var(--main-color);
}

.not-white {
    background: var(--grey-color);
    color: var(--text-color);
    border-radius: 8px;
    margin: 10px 0 0;
}

.not-white h3 {
    color: var(--main-color) !important;
}

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

.text-content {
    text-align: left;
}

.btn, .cta-button, button[type="submit"] {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: 0;
    font-size: 16px;
    margin-top: 15px;
    display: inline-block;
}

.btn:not(.btn-secondary), .cta-button, button[type="submit"] {
    background-color: var(--accent-color);
    color: white;
}

.btn:not(.btn-secondary):not(.btn-beratung):hover, .cta-button:hover, button[type="submit"]:hover {
    background-color: var(--main-color);
    color: white;
    cursor: pointer;
}

.btn-beratung {
    transition: filter .15s ease-in-out;
}
.btn-beratung:hover {
    filter: brightness(90%);
    color: white;
    cursor: pointer;
}

.btn-secondary {
    background-color: #6c757d6e;
}

.video-container {
    width: 70%;
    margin-bottom: 40px;
    margin: auto;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-section {
    background-color: var(--white-color);
    padding: 40px;
    margin-top: 40px;
    border-radius: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icons a {
    font-size: 24px;
}

#contact-form, .form-container {
    width: 100%;
    margin: auto;
    background-color: var(--white-color);
    padding: 1.6rem;
    border-radius: 8px;
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    text-align: left;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.error {
    color: red;
    font-size: 14px;
}

iframe, .teQAzf {
    width: 100%;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
}

.cookie-notice p {
  margin: 0;
  padding-right: 20px;
}

.cookie-notice-link {
  color: #fff;
  text-decoration: underline;
  margin-right: 20px;
}

.cookie-notice-button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-notice-button:hover {
  background-color: #45a049;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Added styles from the second file */

.hero {
    background-color: var(--main-color);
    color: var(--white-color);
    text-align: center;
}

.hero h1,
.hero p {
    color: var(--white-color);
}

.benefits,
.gift,
.health-problems,
.mineral-balance {
    background-color: var(--white-color);
}

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

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial span {
    font-weight: bold;
}

.faq {
    background-color: var(--white-color);
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3, .health-problems h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* Hauptfarbe für Überschriften und aktive Elemente */
.accordion-button:not(.collapsed) {
    background-color: #a4c639; /* Passen Sie diese Farbe an Ihr genaues Markengrün an */
    color: white;
}
.accordion-button {
    font-family: Overlock !important;
    font-size: 20px;
    font-weight: 700;
}

/* Schriftart anpassen */
.accordion-button, .accordion-body {
    font-family: 'Arial', sans-serif; /* Ersetzen Sie dies durch Ihre Marken-Schriftart */
}

/* Hover-Effekt für Accordion-Buttons */
.accordion-button:hover {
    background-color: #b8d94d; /* Eine leicht hellere Variante des Markengrüns */
}

/* Rahmen und Schatten anpassen */
.accordion-item {
    border: 2px solid #a4c639;
    border-radius: 0; /* Für ein eckigeres Design, wie in Ihren Bildern zu sehen */
}

/* Icon-Farbe anpassen */
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Überschrift des Accordions anpassen */
.faq h2 {
    color: #a4c639;
    font-weight: bold;
    font-family: Overlock;
}

.contact-form {
    background-color: var(--grey-color);
}

footer {
    background-color: var(--main-color);
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    gap: 20px;
}

footer nav {
    margin-top: 10px;
}

footer nav a {
    color: var(--main-color);
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 30px;
    }
    
    h3 {
        font-size: 20px;
    }
    .video-container {
        width: 100%;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .form-container {
        padding-right: 2rem;
    }
}

@media (max-width: 991px) {
    .benefits-list {
        padding-left: 24px !important;
    }
}

.benefits-list li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
}

.benefits-list .custom-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.benefits-list {
    padding-left: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.custom-icon:not(.green) {
    color: var(--white-color);
    flex-shrink: 0;
    margin-right: 12px;
    font-size: 1.25rem; /* Adjusted from 1.5em to 1.25rem */
    margin-top: -6px; /* Add slight top padding to align with text */
}

.benefits-list p {
    margin: 0;
    font-size: 1rem; /* Ensure text is readable */
    line-height: 1.4; /* Improve readability for multi-line items */
}

#cookie-notice {
  z-index: 1000;
}

#cookie-notice p {
  font-size: 0.9rem;
}

.testimonials, .video-element {
    display: none;
}