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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f8f8;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d35400;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.hero-right {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background-color: #d35400;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #b84900;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #d35400;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #d35400;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #d35400;
    color: #ffffff;
}

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.info-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.split-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-split .split-content:not(:has(img)) {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.link-inline {
    color: #d35400;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    cursor: pointer;
}

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

.kurse-preview {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.courses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.course-card {
    flex: 0 0 calc(50% - 15px);
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-image {
    flex: 0 0 45%;
    overflow: hidden;
    background-color: #e8e8e8;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.card-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.card-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #d35400;
}

.cta-centered {
    text-align: center;
    margin-top: 40px;
}

.form-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
    margin: 100px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d35400;
}

.btn-submit {
    width: 100%;
    background-color: #d35400;
    color: #ffffff;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #b84900;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d35400;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: #777;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background-color: #d35400;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #b84900;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #444;
}

.page-hero {
    background-color: #f9f9f9;
    text-align: center;
    padding: 100px 40px 80px;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    color: #666;
}

.team-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 70px;
}

.team-split {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.team-member {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.role {
    font-size: 15px;
    color: #d35400;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.team-member p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.values-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.cta-full {
    background-color: #d35400;
    text-align: center;
    padding: 80px 40px;
    color: #ffffff;
}

.cta-full h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-full p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-full .cta-primary {
    background-color: #ffffff;
    color: #d35400;
}

.cta-full .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-intro {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.intro-content {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

.intro-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail {
    margin: 80px 0;
}

.service-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-image {
    flex: 1;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 35px;
}

.service-features li {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: 700;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-label {
    font-size: 15px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #d35400;
}

.booking-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
    margin: 100px 0 0;
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.booking-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.booking-wrapper > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.contact-layout {
    max-width: 1400px;
    margin: 80px auto;
}

.contact-split {
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: #ffffff;
}

.visual-overlay h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.visual-overlay p {
    font-size: 16px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #2c2c2c;
    font-weight: 600;
}

.note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

.map-placeholder {
    background-color: #e8e8e8;
    padding: 80px 40px;
}

.map-box {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #d0d0d0;
    padding: 100px;
    text-align: center;
    border-radius: 8px;
}

.map-box p {
    font-size: 18px;
    color: #666;
}

.faq-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 0 0 calc(50% - 15px);
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
}

.thanks-info {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.next-steps {
    list-style: decimal;
    padding-left: 25px;
}

.next-steps li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-details {
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-page {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 700;
}

.legal-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #d35400;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .hero-split,
    .info-split,
    .service-split,
    .contact-split {
        flex-direction: column;
    }

    .info-split.reverse,
    .service-split.reverse {
        flex-direction: column;
    }

    .courses-grid {
        flex-direction: column;
    }

    .course-card {
        flex: 1 1 100%;
    }

    .team-split {
        flex-direction: column;
    }

    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .value-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .section-header-centered h2,
    .team-section h2,
    .values-wrapper h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}