* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007b9e;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fcfd 0%, #e8f4f8 100%);
}

.hero-content-large {
    max-width: 900px;
    text-align: center;
}

.display-heading {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 1.4rem;
    color: #5a6c7d;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.spacious-intro {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

.intro-text {
    text-align: center;
}

.large-body {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 300;
    color: #2c3e50;
}

.service-selection-section {
    padding: 8rem 2rem;
    background-color: #fafbfc;
}

.section-title-minimal {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    color: #1a1a1a;
}

.service-cards-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-item {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.service-card-item:hover {
    border-color: #007b9e;
    box-shadow: 0 8px 24px rgba(0, 123, 158, 0.1);
}

.service-card-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: #007b9e;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    padding: 1rem 2.5rem;
    background-color: #007b9e;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #005f7a;
}

.statement-block {
    padding: 8rem 2rem;
    background-color: #007b9e;
}

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

.large-quote {
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.5;
    font-style: italic;
}

.visual-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.visual-grid-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.visual-item {
    flex: 1;
}

.visual-item img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-text {
    flex: 1;
}

.visual-text h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.visual-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.form-section-minimal {
    padding: 8rem 2rem;
    background-color: #fafbfc;
}

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

.form-heading {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group-large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-large label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 400;
}

.form-group-large input,
.form-group-large select {
    padding: 1.2rem;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.submit-btn-large {
    padding: 1.5rem 3rem;
    background-color: #007b9e;
    color: #ffffff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn-large:hover {
    background-color: #005f7a;
}

.trust-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.minimal-footer {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.sticky-btn {
    padding: 1.2rem 2.5rem;
    background-color: #007b9e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 123, 158, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background-color: #005f7a;
    box-shadow: 0 6px 16px rgba(0, 123, 158, 0.4);
}

.page-hero-minimal {
    padding: 6rem 2rem 4rem;
    background-color: #f8fcfd;
    text-align: center;
}

.page-title-large {
    font-size: 4rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

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

.story-section {
    padding: 6rem 2rem;
    background-color: #fafbfc;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.team-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.team-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    gap: 3rem;
}

.team-member {
    flex: 1;
    padding: 2rem;
    background-color: #fafbfc;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-role {
    font-size: 1rem;
    color: #007b9e;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-member p:not(.team-role) {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.values-section {
    padding: 6rem 2rem;
    background-color: #fafbfc;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 3px solid #007b9e;
}

.value-item h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a6c7d;
}

.cta-section-about,
.cta-section-services {
    padding: 6rem 2rem;
    background-color: #007b9e;
}

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

.cta-content-large h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-content-large p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: #ffffff;
    color: #007b9e;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.service-detail-item {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background-color: #fafbfc;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007b9e;
    margin-bottom: 2rem;
}

.service-detail-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    margin: 2rem 0;
}

.service-benefits li {
    font-size: 1.1rem;
    color: #2c3e50;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007b9e;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #007b9e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    background-color: #005f7a;
}

.services-extra-info {
    padding: 4rem 2rem;
    background-color: #f8fcfd;
}

.extra-info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.extra-info-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.extra-info-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-detail {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.contact-detail a {
    color: #007b9e;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

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

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-cta-section {
    padding: 6rem 2rem;
    background-color: #007b9e;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-heading {
    font-size: 3rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-service {
    font-size: 1.2rem;
    color: #007b9e;
    font-weight: 500;
    margin-bottom: 2rem;
}

.thanks-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #007b9e;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.thanks-btn:hover {
    background-color: #005f7a;
}

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

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

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

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

.legal-content strong {
    color: #2c3e50;
}

.legal-content em {
    color: #7a8c9e;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.gdpr-table th {
    background-color: #f8fcfd;
    font-weight: 500;
    color: #1a1a1a;
}

.gdpr-table td {
    font-size: 1.05rem;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .display-heading {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .large-body {
        font-size: 1.3rem;
    }

    .section-title-minimal {
        font-size: 2rem;
    }

    .visual-grid-minimal,
    .story-wrapper {
        flex-direction: column;
    }

    .trust-content,
    .contact-wrapper {
        flex-direction: column;
    }

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

    .values-list {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-title-large {
        font-size: 2.5rem;
    }

    .large-quote {
        font-size: 1.5rem;
    }

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

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