* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 80px 60px 60px 60px;
    position: relative;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding-right: 60px;
}

.hero-content-offset h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 20%;
    width: 55%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #333;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.intro-offset {
    display: flex;
    flex-direction: row;
    gap: 80px;
    padding: 120px 60px;
    align-items: center;
    background-color: #fafafa;
}

.intro-block {
    flex: 1;
    max-width: 600px;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

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

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

.value-asymmetric {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.value-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.value-card.offset-left {
    flex-direction: row;
    margin-left: 0;
    margin-right: 120px;
}

.value-card.offset-right {
    flex-direction: row-reverse;
    margin-left: 120px;
    margin-right: 0;
}

.value-card img {
    width: 45%;
    height: auto;
    object-fit: cover;
    background-color: #f0f0f0;
}

.card-content {
    flex: 1;
    padding: 20px;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.card-content p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #444;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.select-service {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.insight-split {
    display: flex;
    flex-direction: row;
    gap: 80px;
    padding: 120px 60px;
    background-color: #fafafa;
    align-items: center;
}

.insight-text {
    flex: 1;
    max-width: 600px;
}

.insight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.insight-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.services-expanded {
    padding: 100px 60px;
}

.services-expanded h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.services-grid-irregular {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-item {
    background-color: #fafafa;
    padding: 50px 40px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-item p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #444;
}

.service-item .price {
    font-size: 1.5rem;
}

.form-section-floating {
    padding: 120px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    position: relative;
}

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

.form-container h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-container p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
select {
    padding: 16px;
    font-size: 1rem;
    border: none;
    background-color: #ffffff;
    font-family: inherit;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.8;
}

.trust-asymmetric {
    padding: 100px 60px;
    background-color: #fafafa;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-left: 40px;
    border-left: 4px solid #1a1a1a;
    color: #444;
}

cite {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

.final-cta-overlay {
    padding: 150px 60px;
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-cta-overlay h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.footer-irregular {
    background-color: #f0f0f0;
    padding: 80px 60px 40px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 10px;
}

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

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

.footer-col a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 0.6;
}

.disclaimer {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.about-hero-offset {
    padding: 150px 60px 100px 120px;
    background-color: #fafafa;
}

.about-text-block {
    max-width: 800px;
}

.about-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.about-text-block p {
    font-size: 1.2rem;
    color: #444;
}

.story-split {
    display: flex;
    flex-direction: row;
    gap: 80px;
    padding: 100px 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.story-content {
    flex: 1;
    max-width: 600px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.values-asymmetric {
    padding: 100px 60px;
    background-color: #fafafa;
}

.values-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.value-block {
    padding: 50px;
    background-color: #ffffff;
}

.value-block.offset-1 {
    margin-left: 0;
    margin-right: 200px;
}

.value-block.offset-2 {
    margin-left: 200px;
    margin-right: 0;
}

.value-block.offset-3 {
    margin-left: 100px;
    margin-right: 100px;
}

.value-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.value-block p {
    font-size: 1.1rem;
    color: #444;
}

.team-irregular {
    padding: 100px 60px;
}

.team-intro {
    max-width: 700px;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.15rem;
    color: #444;
}

.team-image {
    background-color: #f0f0f0;
}

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

.approach-offset {
    padding: 100px 60px;
    background-color: #fafafa;
}

.approach-offset h2 {
    font-size: 3rem;
    margin-bottom: 80px;
    text-align: center;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e0e0;
    min-width: 100px;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    font-size: 1.05rem;
    color: #444;
}

.cta-about {
    padding: 120px 60px;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.services-hero-wide {
    padding: 150px 60px 80px;
    text-align: center;
    background-color: #fafafa;
}

.services-hero-wide h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero-wide p {
    font-size: 1.2rem;
    color: #444;
}

.services-detailed {
    padding: 80px 60px;
}

.service-block {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-block.layout-left {
    flex-direction: row;
}

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

.service-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #444;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.pricing-note-section {
    padding: 80px 60px;
    background-color: #fafafa;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
}

.note-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.note-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #444;
}

.cta-services {
    padding: 120px 60px;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #444;
}

.contact-hero-minimal {
    padding: 150px 60px 80px;
    text-align: center;
}

.contact-hero-minimal h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero-minimal p {
    font-size: 1.2rem;
    color: #444;
}

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

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.info-note {
    margin-top: 60px;
    padding: 30px;
    background-color: #fafafa;
}

.info-note p {
    font-size: 0.95rem;
    color: #444;
}

.contact-visual-offset {
    flex: 1;
    background-color: #f0f0f0;
}

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

.contact-approach {
    padding: 100px 60px;
    background-color: #fafafa;
}

.contact-approach h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.approach-flow {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.flow-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.step-icon {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.flow-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.flow-step p {
    font-size: 1rem;
    color: #444;
}

.additional-info-section {
    padding: 100px 60px;
}

.additional-info-section h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    color: #444;
}

.map-placeholder {
    padding: 80px 60px;
    background-color: #fafafa;
}

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

.map-note p {
    font-size: 1.1rem;
    color: #444;
}

.thanks-hero {
    display: flex;
    gap: 80px;
    padding: 150px 60px 100px;
    align-items: center;
}

.thanks-content {
    flex: 1;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
}

.submission-details {
    background-color: #fafafa;
    padding: 30px;
    margin-bottom: 40px;
    font-size: 1rem;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 1.05rem;
    padding: 12px 0;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

.additional-resources {
    padding: 100px 60px;
    background-color: #fafafa;
}

.additional-resources h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.resources-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.resource-card {
    flex: 1;
    max-width: 350px;
    padding: 40px;
    background-color: #ffffff;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.resource-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #444;
}

.resource-card a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s;
}

.resource-card a:hover {
    opacity: 0.6;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.gdpr-table thead,
.cookie-table thead {
    background-color: #f0f0f0;
}

.gdpr-table th,
.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #ddd;
}

.gdpr-table td,
.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #444;
}

@media (max-width: 768px) {
    .nav-floating {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content-offset {
        padding-right: 0;
    }

    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        position: static;
        width: 100%;
        margin-top: 40px;
    }

    .intro-offset,
    .story-split,
    .insight-split,
    .contact-layout-asymmetric,
    .thanks-hero {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .value-card {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .value-card img {
        width: 100%;
    }

    .service-block {
        flex-direction: column !important;
        margin-bottom: 60px;
    }

    .footer-content,
    .approach-flow,
    .resources-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}