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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #8fb8cc;
    --accent-color: #d4915e;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #fafbfc;
    --background-cream: #f9f7f4;
    --border-color: #e0e4e8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 6px 14px;
    background-color: var(--background-light);
    border-radius: 20px;
}

.hero-offset {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    gap: 80px;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 580px;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 38px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #234a5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 122, 0.25);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.insight-overlap {
    padding: 120px 60px 80px;
    background-color: var(--background-cream);
    position: relative;
    margin-top: -80px;
}

.insight-block {
    max-width: 720px;
    margin-left: 140px;
}

.insight-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.8px;
}

.insight-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.visual-story {
    position: relative;
    margin: 80px 0;
}

.visual-story img {
    width: 100%;
    height: 500px;
}

.story-caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    max-width: 520px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.story-caption p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.services-asymmetric {
    padding: 120px 60px;
}

.section-title-offset {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 70px;
    margin-left: 80px;
    letter-spacing: -1px;
}

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

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 1 1 calc(55% - 15px);
}

.card-medium {
    flex: 1 1 calc(48% - 15px);
}

.card-small {
    flex: 1 1 calc(45% - 15px);
}

.service-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.btn-service {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #234a5e;
    transform: translateY(-1px);
}

.testimonial-diagonal {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-cream) 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.testimonial-diagonal blockquote {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-diagonal p {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-diagonal cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.form-section-offset {
    padding: 120px 60px;
    background-color: var(--background-light);
}

.form-container {
    max-width: 620px;
    margin-left: auto;
    margin-right: 120px;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--background-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #234a5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 122, 0.25);
}

.trust-section {
    padding: 100px 60px;
}

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

.trust-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-item strong {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: white;
    padding: 80px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-block {
    flex: 1;
}

.footer-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px 60px;
    box-shadow: 0 -4px 20px 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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background-color: #234a5e;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: white;
}

.about-hero-split {
    display: flex;
    min-height: 85vh;
    padding-top: 100px;
}

.about-image-container {
    flex: 1;
    position: relative;
}

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

.about-content-overlap {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin-left: -80px;
    background: white;
    z-index: 10;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.about-content-overlap h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-content-overlap p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.philosophy-offset {
    padding: 120px 60px 120px 140px;
    background-color: var(--background-cream);
}

.philosophy-offset h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
}

.philosophy-block strong {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.philosophy-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.background-section {
    padding: 100px 60px;
}

.background-content-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.background-content-narrow h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.background-content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.team-asymmetric {
    padding: 100px 60px;
    background-color: var(--background-light);
}

.team-asymmetric h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: center;
}

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

.team-member {
    flex: 1 1 300px;
}

.member-image {
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.member-role {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-section {
    padding: 100px 60px;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.values-content {
    max-width: 820px;
    margin: 0 auto;
}

.values-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.services-intro-diagonal {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a5f 100%);
    color: white;
    text-align: center;
}

.services-intro-diagonal h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-lead {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.large-offset {
    margin-left: 80px;
}

.medium-left {
    margin-left: 40px;
}

.small-right {
    margin-right: 40px;
    flex-direction: row-reverse;
}

.medium-right {
    margin-right: 60px;
    flex-direction: row-reverse;
}

.small-left {
    margin-left: 60px;
}

.large-center {
    flex-direction: column;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-visual-large,
.service-visual-medium,
.service-visual-small {
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-visual-large {
    width: 480px;
    height: 360px;
}

.service-visual-medium {
    width: 400px;
    height: 300px;
}

.service-visual-small {
    width: 320px;
    height: 280px;
}

.large-center .service-visual-large {
    width: 100%;
    height: 400px;
}

.service-visual-large img,
.service-visual-medium img,
.service-visual-small img {
    width: 100%;
    height: 100%;
}

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

.service-detail-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 28px;
}

.service-includes li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-display {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.service-comparison {
    padding: 80px 60px;
    background-color: var(--background-cream);
}

.service-comparison h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.comparison-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-layout-split {
    display: flex;
    min-height: 80vh;
    padding-top: 100px;
}

.contact-info-block {
    flex: 1;
    padding: 80px 60px;
}

.contact-info-block h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.contact-additional {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.contact-additional h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.contact-additional p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-visual-section {
    flex: 1;
    position: relative;
}

.contact-visual-section img {
    width: 100%;
    height: 100%;
}

.contact-faq {
    padding: 100px 60px;
    background-color: var(--background-cream);
}

.contact-faq h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 60px 80px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

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

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 50px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a5e;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.thanks-contact {
    padding: 24px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 15px;
    color: var(--text-light);
}

.legal-document {
    padding: 140px 60px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-document h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 14px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: #234a5e;
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
        padding: 120px 40px 60px;
    }

    .hero-content-left {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-image-right {
        margin-top: 40px;
    }

    .service-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .about-hero-split {
        flex-direction: column;
    }

    .about-content-overlap {
        margin-left: 0;
        margin-top: -60px;
    }

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

    .service-visual-large,
    .service-visual-medium,
    .service-visual-small {
        width: 100%;
    }

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

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