* {
    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.7;
    color: #2d3436;
    background-color: #fefefe;
}

.header-asymmetric {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-block .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0984e3;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-offset {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #636e72;
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
}

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

.nav-list a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #0984e3;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    position: relative;
}

.hero-content-offset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-left: 5%;
    z-index: 10;
}

.hero-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #2d3436;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: #0984e3;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -2rem;
    margin-right: -10%;
}

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

.intro-diagonal {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 2rem;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    transform: skewY(2deg);
    display: flex;
    gap: 4rem;
}

.intro-card-left {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-right: -5%;
    z-index: 10;
}

.intro-card-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.feature-grid-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-left: -3%;
}

.feature-item {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #0984e3;
    border-radius: 4px;
}

.feature-item:nth-child(2) {
    margin-left: 3rem;
}

.feature-item:nth-child(3) {
    margin-left: 6rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3436;
}

.services-preview-stagger {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header-angle {
    text-align: left;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.services-header-angle h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.services-header-angle p {
    font-size: 1.2rem;
    color: #636e72;
}

.services-cards-irregular {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-elevated {
    margin-top: -2rem;
}

.card-shifted {
    margin-top: 1rem;
}

.card-lower {
    margin-top: 3rem;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.card-content p {
    color: #636e72;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: #00b894;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.services-link-corner {
    text-align: right;
    margin-top: 3rem;
    margin-right: 10%;
}

.link-arrow {
    color: #0984e3;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #0770c4;
    text-decoration: underline;
}

.testimonials-overlap {
    background: #f8f9fa;
    padding: 6rem 2rem;
    position: relative;
}

.testimonials-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    margin-left: 15%;
    color: #2d3436;
}

.testimonials-flex {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-style: italic;
}

.testimonial-raised {
    margin-top: -3rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card cite {
    font-style: normal;
    color: #0984e3;
    font-weight: 600;
}

.cta-section-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.cta-text-block {
    flex: 1;
    padding-right: 2rem;
}

.cta-text-block h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.cta-text-block p {
    font-size: 1.2rem;
    color: #636e72;
}

.cta-form-block {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    margin-right: -5%;
}

.form-asymmetric h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3436;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0984e3;
    box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
}

.btn-submit {
    width: 100%;
    background: #0984e3;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

.trust-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.trust-content {
    text-align: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0984e3;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #636e72;
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    margin-top: 6rem;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background: #2d3436;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #b2bec3;
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5154;
    color: #b2bec3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #00b894;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #00a383;
}

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

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

.page-header-offset {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.page-header-content {
    margin-left: 10%;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.page-header-content p {
    font-size: 1.3rem;
    color: #636e72;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.service-offset-right {
    flex-direction: row;
}

.service-offset-left {
    flex-direction: row-reverse;
}

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

.service-image-wrap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.service-details p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2d3436;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

.pricing-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-weight: 600;
    color: #2d3436;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0984e3;
}

.cta-services {
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3436;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0984e3;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.faq-item p {
    color: #636e72;
    line-height: 1.7;
}

.about-hero-split {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-hero-left {
    flex: 1;
    padding-left: 5%;
}

.about-hero-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.about-hero-left p {
    font-size: 1.2rem;
    color: #636e72;
    line-height: 1.8;
}

.about-hero-right {
    flex: 1;
}

.about-hero-right img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #dfe6e9;
}

.story-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-text-block h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.story-text-block p {
    font-size: 1.15rem;
    color: #636e72;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-wrap {
    position: relative;
}

.values-heading {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2d3436;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-left {
    margin-left: 0;
    margin-right: auto;
    width: 60%;
}

.value-right {
    margin-left: auto;
    margin-right: 0;
    width: 60%;
}

.value-center {
    margin-left: 20%;
    margin-right: 20%;
    width: 60%;
}

.value-wide {
    width: 80%;
    margin: 0 auto;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.value-block p {
    color: #636e72;
    line-height: 1.8;
}

.team-preview {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

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

.team-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.team-intro {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.team-highlight {
    text-align: left;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.team-highlight p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.approach-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.approach-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3436;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.approach-item p {
    color: #636e72;
    line-height: 1.7;
}

.numbers-section {
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
}

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

.numbers-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.numbers-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.number-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    min-width: 200px;
}

.number-big {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.number-desc {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.cta-about {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-about-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-about-inner h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.cta-about-inner p {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.cta-btn-large {
    display: inline-block;
    background: #0984e3;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

.contact-hero {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

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

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #636e72;
}

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-primary {
    margin-left: 0;
    margin-right: auto;
    width: 70%;
}

.contact-secondary {
    margin-left: auto;
    margin-right: 0;
    width: 70%;
}

.contact-additional {
    margin: 0 auto;
    width: 80%;
}

.contact-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #0984e3;
}

.contact-detail p {
    color: #636e72;
    line-height: 1.7;
}

.contact-cta {
    display: inline-block;
    background: #0984e3;
    color: #ffffff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-cta:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

.faq-contact {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.faq-contact-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-contact-inner h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3436;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-entry {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-entry h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.faq-entry p {
    color: #636e72;
    line-height: 1.7;
}

.map-notice {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.map-notice-content {
    text-align: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-notice-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.map-notice-content p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.8;
}

.thanks-hero {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-content {
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #00b894;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.thanks-message {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 3rem;
}

.thanks-details {
    text-align: left;
    margin: 3rem 0;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2d3436;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #0984e3;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.thanks-step p {
    flex: 1;
    color: #636e72;
    line-height: 1.7;
    padding-top: 0.5rem;
}

.thanks-service-reference {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-service-reference p {
    margin: 0;
    color: #2d3436;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0984e3;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0770c4;
}

.btn-secondary {
    background: #f8f9fa;
    color: #2d3436;
}

.btn-secondary:hover {
    background: #dfe6e9;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dfe6e9;
}

.thanks-contact p {
    color: #636e72;
}

.thanks-additional {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

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

.thanks-additional-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3436;
}

.tips-grid {
    display: flex;
    gap: 2rem;
}

.tip-card {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.tip-card p {
    color: #636e72;
    line-height: 1.7;
}

.legal-page {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.legal-container {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.legal-updated {
    color: #636e72;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3436;
}

.legal-content p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0984e3;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background: #f8f9fa;
}

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

.cookies-table th {
    font-weight: 600;
    color: #2d3436;
}

.cookies-table td {
    color: #636e72;
}

@media (max-width: 1024px) {
    .hero-content-offset {
        flex-direction: column;
    }

    .hero-image-overlap {
        margin-right: 0;
    }

    .intro-wrapper {
        flex-direction: column;
    }

    .services-cards-irregular {
        flex-direction: column;
    }

    .card-elevated,
    .card-shifted,
    .card-lower {
        margin-top: 0;
    }

    .testimonials-flex {
        flex-direction: column;
    }

    .testimonial-raised {
        margin-top: 0;
    }

    .cta-section-split {
        flex-direction: column;
    }

    .service-block {
        flex-direction: column !important;
    }

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

    .approach-item {
        flex: 1 1 100%;
    }

    .numbers-flex {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-blocks {
        flex-direction: column;
        gap: 2rem;
    }

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

    .value-left,
    .value-right,
    .value-center,
    .value-wide {
        width: 100%;
        margin: 0;
    }

    .contact-primary,
    .contact-secondary,
    .contact-additional {
        width: 100%;
        margin: 0;
    }
}