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

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

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

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

.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;
    margin: 0;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: white;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #27ae60;
}

.ad-disclosure {
    font-size: 13px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 5px 12px;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1b5e20;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 20px;
    color: #2e7d32;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    background-color: #a5d6a7;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #27ae60;
    color: #27ae60;
}

.cta-button.secondary:hover {
    background-color: #27ae60;
    color: white;
}

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.intro-card {
    flex: 1;
    text-align: center;
    padding: 35px 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 15px;
}

.intro-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 20px;
    background-color: #f4f7f9;
}

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

.section-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 19px;
    color: #7f8c8d;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.service-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

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

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

.form-intro p {
    font-size: 18px;
    color: #7f8c8d;
}

.contact-form {
    background-color: white;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.why-us-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.features-layout {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.feature-block {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 8px;
}

.feature-block h3 {
    font-size: 24px;
    color: #27ae60;
    margin-bottom: 15px;
}

.feature-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #27ae60;
}

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

.page-hero {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background-color: #e0e0e0;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

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

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

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

.value-card {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 15px;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.experience-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.experience-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.exp-content {
    flex: 2;
}

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

.exp-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.exp-list {
    list-style: none;
}

.exp-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.exp-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.exp-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-box {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.approach-section {
    padding: 80px 20px;
    background-color: #f4f7f9;
}

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

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

.step-item {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #5a6c7d;
}

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

.service-pricing {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 6px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-right: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.contact-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.additional-info {
    padding: 80px 20px;
    background-color: #f4f7f9;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.info-block {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.info-block h3 {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 15px;
}

.info-block p {
    color: #5a6c7d;
    line-height: 1.7;
}

.impressum-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.impressum-content p {
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.8;
}

.thanks-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: white;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #1b5e20;
    margin-bottom: 20px;
}

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

.thanks-details {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thanks-details p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.thanks-next-steps h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.thanks-next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

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

.thanks-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.info-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    border-top: 4px solid #27ae60;
}

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

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: #27ae60;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

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

.legal-text li {
    margin-bottom: 12px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-text a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
}

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

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-layout {
        flex-direction: column;
    }

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

    .about-intro {
        flex-direction: column;
    }

    .experience-layout {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .btn-cookie {
        flex: 1;
    }
}