/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #d6f5d6;
    --secondary-green: #b8e6b8;
    --accent-green: #9dd89d;
    --white: #ffffff;
    --light-gray: #f2f2f2;
    --medium-gray: #e0e0e0;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo h1 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-green);
    color: var(--text-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--white) 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-icon svg {
    width: 3rem;
    height: 3rem;
    color: var(--accent-green);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--white);
}

.products h2 {
    text-align: left;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* --- Slider ist IMMER sichtbar (wir nutzen kein Grid mehr) --- */
.mobile-slider { display: block; }

/* --- Puzzleteil-Pagination (größer + Grünton) --- */
/* Meine Vorschlag-Farben passend ruhig/freundlich:
   Inaktiv:  #54C18D  (sanftes Grün)
   Aktiv:    #2F9E6E  (kräftigeres Grün)
*/
:root {
  --puzzle-green: #54C18D;  /* inaktiv */
  --puzzle-green-active: #2F9E6E; /* aktiv */
}

/* SVG-Maske (Puzzleteil) */
.mobile-slider .swiper-pagination-bullet {
  width: 22px;              /* größer machen */
  height: 22px;
  margin: 0 8px !important;
  opacity: 1;
  background: var(--puzzle-green);
  border-radius: 0;

  /* Puzzle-Maske */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 2h6v3a2 2 0 1 0 0 4v3h-3a2 2 0 1 1-4 0H5V9h3a2 2 0 1 1 0-4V2z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 2h6v3a2 2 0 1 0 0 4v3h-3a2 2 0 1 1-4 0H5V9h3a2 2 0 1 1 0-4V2z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  transition: transform .2s ease, background-color .2s ease;
}

.mobile-slider .swiper-pagination-bullet-active {
  background: var(--puzzle-green-active);
  transform: scale(1.2);
}

/* Fallback: runde Punkte, falls Masken nicht unterstützt werden */
@supports not (mask-image: url("")) {
  .mobile-slider .swiper-pagination-bullet { border-radius: 50%; }
}

/* Optional: Abstand der Pagination anpassen */
.mobile-slider .swiper-pagination { bottom: 10px !important; }

/* Pfeile im Puzzle-Grünton, mit Kreis-Hintergrund */
.swiper-button-prev,
.swiper-button-next {
  color: var(--puzzle-green-active);   /* gleiche Farbe wie aktive Puzzle-Punkte */
  width: 40px;
  height: 40px;
  border-radius: 50%;                  /* Kreisform */
  background: rgba(47, 158, 110, 0.15); /* leicht grüner, transparenter Kreis */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* Hover-Effekt */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--puzzle-green-active);
  color: #fff;                         /* Pfeil wird weiß */
  transform: scale(1.05);              /* kleiner „Pop“-Effekt */
}

/* Pfeil-Symbole kleiner anpassen */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;                     /* Symbolgröße (nicht das ganze Feld) */
}


.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: right;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.6rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-green);
}

.product-format {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-actions {
    margin-top: 1rem;
}

.product-actions .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.donation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.donation-text h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.donation-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
    color: white;
}

.btn-donation {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-donation:hover {
    background: white;
    color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.info-card {
    background: var(--primary-green);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    background: var(--white);
    color: var(--accent-green);
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-green);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-answer a {
    color: var(--accent-green);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--primary-green);
    border-radius: var(--border-radius);
}

.faq-cta h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Social Media Section */
.social-media {
    padding: 80px 0;
    background: var(--light-gray);
}

.social-media h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent-green);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(157, 216, 157, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-notice {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.privacy-notice a {
    color: var(--accent-green);
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Page Content */
.page-content {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.cookie-banner p {
    margin: 0;
    color: var(--white);
}

.cookie-banner a {
    color: var(--primary-green);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner .btn {
    background: var(--primary-green);
    color: var(--text-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-banner .btn:hover {
    background: var(--accent-green);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Donation Popup */
.donation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.donation-popup.show {
    opacity: 1;
    visibility: visible;
}

.donation-popup-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.donation-popup.show .donation-popup-content {
    transform: translateY(0);
}

.donation-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-popup-close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.donation-popup-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.donation-popup-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.donation-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.donation-popup-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--white) 100%);
    padding: 120px 0 80px;
}

.about-content h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.what-makes-me-special {
    padding: 80px 0;
    background: var(--light-gray);
}

.what-makes-me-special h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.special-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon svg {
    width: 3rem;
    height: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Resource Grid Styles */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.resource-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.resource-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resource-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.resource-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
}

.resource-link:hover {
    text-decoration: underline;
}

.search-tip {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 500;
    border-left: 4px solid var(--accent-green);
}

/* Support Page Styles */
.support-page {
    padding: 120px 0 80px;
    background: var(--white);
}

.support-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.support-hero h1 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 3rem;
}

.support-intro {
    background: var(--primary-green);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.support-intro p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.support-intro p:last-child {
    margin-bottom: 0;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-green);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-green);
}

.support-icon {
    background: var(--primary-green);
    color: var(--accent-green);
    padding: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.support-icon svg {
    width: 2rem;
    height: 2rem;
}

.support-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-card p {
    color: var(--text-light);
    margin: 0;
}

.support-cta {
    background: var(--primary-green);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

.support-cta h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.support-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-support {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-support:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-support:hover::before {
    left: 100%;
}

.support-message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.message-content {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.message-content h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.message-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--medium-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--medium-gray);
}

.footer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
}

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

.footer-credit a:hover {
    text-decoration: underline;
}

/* Info Page Styles */
.info-page {
    padding: 120px 0 80px;
    background: var(--white);
}

.info-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    background: var(--primary-green);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.info-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.info-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.section-header {
    background: var(--primary-green);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon {
    background: var(--white);
    color: var(--accent-green);
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-icon svg {
    width: 2rem;
    height: 2rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin: 0;
    font-size: 2rem;
}

.section-content {
    padding: 2rem;
}

.section-content h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.highlight-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--accent-green);
}

.highlight-box h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.highlight-box p,
.highlight-box ul {
    margin-bottom: 0;
}

.adhd-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.adhd-type {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.adhd-type h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.adhd-type ul {
    margin: 0;
    padding-left: 1.5rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.comparison-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.key-messages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.message-card {
    background: var(--primary-green);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.message-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.message-card p {
    color: var(--text-light);
    margin: 0;
}

.info-cta {
    background: var(--primary-green);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 4rem;
}

.info-cta h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.easter-egg {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    cursor: default;
}

.pricing-section {
    background: var(--primary-green);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--accent-green);
    position: relative;
}

.pricing-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.offer-badge {
    background: var(--accent-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0;
    display: inline-block;
}

.team-pricing {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.team-pricing h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.team-pricing p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--box-shadow);
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hero-content,
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services,
    .products,
    .social-media,
    .contact,
    .what-makes-me-special,
    .cta-section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .about-hero {
        padding: 100px 0 60px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-banner p {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    h2 {
        font-size: 1.75rem;
    }

    .service-card,
    .product-card,
    .feature-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .info-page {
        padding: 100px 0 60px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .adhd-types,
    .comparison-grid,
    .key-messages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-intro {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .info-cta {
        padding: 2rem 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.nav-link:focus,
.btn:focus,
.social-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    :root {
        --primary-green: #a8d8a8;
        --accent-green: #66b366;
        --text-dark: #000000;
        --text-light: #333333;
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-green);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}
