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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3c6b;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a5490;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.main-nav a {
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 500;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

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

.hero-magazine {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #1a5490;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 600px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: normal;
}

.hero-overlay p {
    font-size: 22px;
    line-height: 1.4;
}

.intro-columns {
    margin: 80px 0;
}

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

.main-column {
    flex: 2;
}

.main-column h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: normal;
    line-height: 1.3;
}

.main-column p {
    margin-bottom: 20px;
}

.main-column img {
    margin: 40px 0;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.sidebar-column {
    flex: 1;
    position: sticky;
    top: 120px;
}

.highlight-box {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #1a5490;
}

.highlight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.highlight-box ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5490;
}

.cta-sidebar {
    background-color: #1a5490;
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.cta-sidebar h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-sidebar p {
    margin-bottom: 20px;
    font-size: 15px;
}

.visual-break {
    margin: 80px 0;
    background-color: #ffffff;
    padding: 60px 0;
}

.split-visual {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.visual-left {
    flex: 1;
}

.visual-left img {
    width: 100%;
    border-radius: 4px;
}

.visual-right {
    flex: 1;
}

.visual-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.visual-right p {
    margin-bottom: 15px;
}

.services-overview {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f5f5f5;
}

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

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: normal;
}

.section-header-centered p {
    font-size: 20px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #1a5490;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

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

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #1a5490;
    margin-bottom: 20px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.btn-select-service:hover {
    background-color: #0d3c6b;
}

.btn-primary {
    padding: 12px 30px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica', 'Arial', sans-serif;
    display: inline-block;
}

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

.btn-secondary {
    padding: 12px 30px;
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica', 'Arial', sans-serif;
    display: inline-block;
}

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

.btn-accent {
    padding: 12px 30px;
    background-color: #c77d28;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Helvetica', 'Arial', sans-serif;
    display: inline-block;
}

.btn-accent:hover {
    background-color: #a6671f;
}

.booking-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #ffffff;
}

.booking-section.hidden {
    display: none;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.price-display {
    font-size: 22px;
    color: #1a5490;
    font-weight: bold;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions button {
    flex: 1;
}

.trust-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: normal;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

.main-footer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #8fb3d9;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.page-hero {
    background-color: #1a5490;
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 22px;
}

.about-story {
    margin: 80px 0;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: normal;
}

.story-content p {
    margin-bottom: 15px;
}

.mission-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f5f5f5;
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: normal;
}

.mission-box p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-section {
    margin: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: normal;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.team-member .role {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.6;
}

.values-section {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: normal;
}

.values-columns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5490;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
}

.partnerships {
    margin: 80px 0;
}

.partnerships h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.partnerships p {
    margin-bottom: 15px;
}

.partners-list {
    list-style: none;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.partners-list li {
    flex: 1 1 calc(50% - 10px);
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 3px solid #c77d28;
}

.cta-about {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #1a5490;
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: normal;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detailed {
    margin: 60px 0;
}

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

.service-detail-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 4px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: normal;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #1a5490;
}

.service-detail-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
}

.service-detail-content p {
    margin-bottom: 15px;
}

.price-tag {
    font-size: 32px;
    font-weight: bold;
    color: #1a5490;
    margin: 15px 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.service-info {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f5f5f5;
}

.service-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: normal;
}

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

.info-box {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a5490;
}

.info-box p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-info {
    margin: 60px 0;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: normal;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a5490;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-item .no-link {
    color: #2a2a2a;
    font-weight: 500;
}

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

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 4px;
}

.impressum-section {
    margin: 60px 0;
    padding: 60px 0;
    background-color: #f9f9f9;
}

.impressum-section h2 {
    font-size: 32px;
    margin: 30px 0 20px;
    font-weight: normal;
}

.impressum-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #1a5490;
}

.impressum-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.impressum-section .no-link {
    color: #2a2a2a;
}

.thanks-hero {
    margin: 80px 0;
}

.thanks-content {
    text-align: center;
    padding: 60px 30px;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: normal;
}

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.thanks-details p {
    font-size: 16px;
    margin-bottom: 10px;
}

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

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: normal;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.thanks-note {
    margin: 30px 0;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.thanks-note p {
    font-size: 15px;
    color: #856404;
    margin: 0;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.additional-info {
    margin: 80px 0;
    padding: 60px 0;
    background-color: #f5f5f5;
}

.additional-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: normal;
}

.prep-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.prep-item {
    flex: 1;
    min-width: 280px;
}

.prep-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
}

.prep-item p {
    font-size: 16px;
    line-height: 1.6;
}

.legal-content {
    margin: 60px 0;
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
    color: #1a5490;
}

.legal-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2a2a2a;
}

.legal-content h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content .last-updated {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content .last-review {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

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

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

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 500;
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        padding: 30px;
    }

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

    .column-layout,
    .story-layout,
    .split-visual,
    .service-detail-layout,
    .contact-layout {
        flex-direction: column;
    }

    .sidebar-column {
        position: static;
    }

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

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

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

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