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

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

.navigation {
    background-color: #1a2332;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8f4f0;
    letter-spacing: 0.5px;
}

.ad-notice {
    background-color: #3d5a80;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.nav-menu li a {
    color: #e8f4f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-menu li a:hover {
    color: #8fbfb3;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a2332;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.4rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.intro-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
    background-color: #d4e6df;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #4a5568;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #f8faf9;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 2rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #d4e6df;
}

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

.service-card h3 {
    font-size: 1.6rem;
    color: #1a2332;
    padding: 1.5rem 1.5rem 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    padding: 0 1.5rem 1rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a3d;
    padding: 0 1.5rem 1rem;
}

.select-service-btn {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1f3d28;
}

.form-section {
    background-color: #e8f4f0;
    padding: 5rem 2rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.3rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container > p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-size: 1rem;
    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: #2d5a3d;
}

.submit-btn {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

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

.trust-section {
    background-color: #1a2332;
    padding: 5rem 2rem;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.trust-item {
    flex: 1;
    min-width: 260px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8fbfb3;
    font-weight: 700;
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d4e6df;
}

.disclaimer-section {
    background-color: #f0f4f8;
    padding: 3rem 2rem;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.7;
}

.footer {
    background-color: #0f1821;
    color: #cbd5e0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2d3748;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e8f4f0;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a0aec0;
}

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

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

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8fbfb3;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.page-header {
    background-color: #1a2332;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    color: #d4e6df;
}

.about-intro {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.content-wrapper-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text-block h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text-block p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-header h2 {
    font-size: 2.6rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.team-visual {
    max-width: 1400px;
    margin: 0 auto 3rem;
    background-color: #d4e6df;
}

.team-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-description {
    max-width: 1000px;
    margin: 0 auto;
}

.team-description p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.6rem;
    color: #1a2332;
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #e8f4f0;
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a2332;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    background-color: #f8faf9;
    padding: 5rem 2rem;
}

.approach-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #d4e6df;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 2.4rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.technology-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.tech-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tech-wrapper h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tech-wrapper p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-about {
    background-color: #2d5a3d;
    padding: 4rem 2rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2d5a3d;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #e8f4f0;
}

.services-detail-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-block {
    margin-bottom: 5rem;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-text {
    flex: 1.2;
}

.service-detail-text h2 {
    font-size: 2.3rem;
    color: #1a2332;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.service-features li {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.7rem;
    padding-left: 1.8rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    background-color: #e8f4f0;
    padding: 1.2rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

.price-value {
    font-size: 1.5rem;
    color: #2d5a3d;
    font-weight: 700;
}

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

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

.contact-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-item {
    flex: 1;
    min-width: 260px;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.impressum-section {
    background-color: #f8faf9;
    padding: 4rem 2rem;
}

.impressum-content {
    max-width: 1000px;
    margin: 0 auto;
}

.impressum-content h2 {
    font-size: 2.3rem;
    color: #1a2332;
    margin-bottom: 2rem;
    font-weight: 700;
}

.impressum-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.impressum-content ul li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thanks-section {
    background-color: #f8faf9;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.6rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-info {
    font-size: 1.1rem;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.thanks-note {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: #e8f4f0;
    color: #2d5a3d;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d4e6df;
}

.legal-content {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 2rem;
    color: #1a2332;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: #2d5a3d;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: #e8f4f0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
    min-width: 300px;
}

.cookie-content p a {
    color: #8fbfb3;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1f3d28;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

@media (max-width: 1024px) {
    .content-wrapper,
    .approach-content,
    .service-detail-content {
        flex-direction: column;
    }

    .service-block.reverse .service-detail-content {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .service-card {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}