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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-left, .nav-center, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.hero-left {
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #34495e;
}

.hero-right {
    padding: 0;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-hero:hover {
    background-color: #2980b9;
}

.intro-narrative {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-narrative h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.schools-showcase {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.split-content {
    display: flex;
    gap: 0;
}

.content-block {
    flex: 1;
    padding: 60px;
}

.content-block h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
}

.content-block img {
    width: 100%;
    height: 100%;
}

.modern-projects {
    padding: 80px 0;
    background-color: #ffffff;
}

.modern-projects h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.project-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 8px;
    color: #ffffff;
}

.project-card img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.project-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.project-card p {
    font-size: 15px;
    line-height: 1.6;
}

.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    font-size: 18px;
    margin-bottom: 50px;
    color: #34495e;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
}

.price {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.select-service {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2980b9;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.philosophy {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.philosophy h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.philosophy p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    margin-bottom: 20px;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #229954;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 100px 0 60px;
    background-color: #ecf0f1;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 17px;
    color: #34495e;
}

.team-approach {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.approach-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-card p {
    font-size: 15px;
    color: #34495e;
}

.heritage {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.heritage h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.heritage p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.service-benefits {
    margin: 30px 0;
    padding-left: 25px;
}

.service-benefits li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #34495e;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.process-overview {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.process-overview h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.process-overview p {
    font-size: 18px;
    color: #34495e;
}

.impressum-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.impressum-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.impressum-content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.impressum-content h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.impressum-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #34495e;
}

.impressum-content a {
    color: #3498db;
    text-decoration: none;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.service-confirmation p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.selected-service-display {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.steps-list li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.thanks-actions a {
    padding: 15px 35px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.thanks-actions .btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.thanks-actions .btn-primary:hover {
    background-color: #2980b9;
}

.thanks-actions .btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.thanks-actions .btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-info {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-text h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 15px;
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

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

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .nav-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-center {
        order: -1;
        width: 100%;
    }

    .projects-grid,
    .approach-grid {
        flex-direction: column;
    }

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