/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Public Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    z-index: 10000;
    padding: 20px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept, .btn-decline {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Public Sans', sans-serif;
}

.btn-accept {
    background: white;
    color: black;
}

.btn-accept:hover {
    background: #f0f0f0;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-decline:hover {
    background: white;
    color: black;
}

/* Header */
.header {
    background: #2c2c2c;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #4CAF50;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #121212;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button, .btn-primary {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Public Sans', sans-serif;
    border-radius: 5px;
}

.cta-button:hover, .btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Kurse Section */
.kurse-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.kurse-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c2c2c;
    font-weight: 600;
}

.kurse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.kurs-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kurs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.kurs-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.kurs-meta {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kurs-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.btn-secondary {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Public Sans', sans-serif;
    border-radius: 5px;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: white;
}

/* Trainings Section */
.trainings-section {
    padding: 80px 0;
    background: white;
}

.trainings-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c2c2c;
    font-weight: 600;
}

.training-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.training-item.reverse {
    flex-direction: row-reverse;
}

.training-text {
    flex: 1;
}

.training-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.training-text p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.training-image {
    flex: 1;
}

.training-image img {
    width: 100%;
   
}

/* Vorteile Section */
.vorteile-section {
    padding: 80px 0;
    background: #2c2c2c;
    color: white;
}

.vorteile-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.vorteil-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4CAF50;
}

.vorteil-item p {
    line-height: 1.6;
    color: #ccc;
}

.lernen-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
}

.lernen-text {
    flex: 1;
}

.lernen-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.lernen-text p {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ccc;
}

.lernen-image {
    flex: 1;
}

.lernen-image img {
    width: 100%;
   
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.bonus-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
}

.bonus-section > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-content h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 600;
}

.bonus-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
}

.bonus-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Teilnehmer Section */
.teilnehmer-section {
    padding: 80px 0;
    background: #e8e9ea;
}

.teilnehmer-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c2c2c;
    font-weight: 600;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c2c2c;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px !important;
    font-weight: 500;
}

.testimonial-text {
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #2c2c2c;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-section > .container > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.registration-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Public Sans', sans-serif;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left .logo span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-left p {
    margin-top: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

@media (max-width: 1024px) {
    .kurse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #2c2c2c;
        transition: left 0.3s ease;
        padding: 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .kurse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .training-item,
    .training-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .lernen-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-content h3 {
        font-size: 1.4rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 25px 20px;
    }
    
    .vorteile-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 550px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .kurse-section h2,
    .trainings-section h2,
    .vorteile-section h2,
    .bonus-section h2,
    .teilnehmer-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .kurse-grid {
       display: flex;
       flex-direction: column;
    }
    
    .kurs-card {
        padding: 20px;
    }
    
    .kurse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .lernen-content {
        padding: 20px;
    }
    
    .testimonial {
        padding: 20px;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                