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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #8b9d83;
    --accent-color: #d4a574;
    --dark-color: #1a2e1f;
    --light-color: #f5f7f4;
    --text-color: #2c3e3a;
    --border-color: #d8e1d6;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 40px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 17px;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

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

section {
    padding: 80px 5%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 25px 5%;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-accept:hover {
    background: #c49563;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-color);
}

.nav-floating {
    position: fixed;
    top: 30px;
    right: 5%;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    position: absolute;
    left: 40px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    margin-left: 180px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
}

.hero-offset-left {
    flex: 1;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-title-split {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.accent-large {
    color: var(--accent-color);
    display: block;
    font-style: italic;
}

.hero-subtext {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-primary-offset {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary-offset:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.hero-offset-right {
    flex: 1;
    position: relative;
}

.hero-image-tilt {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    transform: rotate(2deg);
    box-shadow: var(--shadow-large);
}

.intro-stagger {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 100px 5%;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
}

.section-header-offset {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.intro-visual-block {
    flex: 1;
    position: relative;
}

.visual-overlap {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.visual-caption-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-color);
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: var(--shadow-large);
    max-width: 300px;
}

.visual-caption-float p {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.problem-amplify {
    background: var(--light-color);
    padding: 100px 5%;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.card-offset-1 {
    transform: translateY(30px);
}

.card-offset-2 {
    transform: translateY(-20px);
}

.card-offset-3 {
    transform: translateY(15px);
}

.problem-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.problem-card p {
    line-height: 1.7;
}

.insight-reveal {
    padding: 120px 5%;
}

.insight-container-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-left-heavy {
    flex: 1.5;
}

.insight-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-heading {
    font-size: 2.6rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-body {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-right-light {
    flex: 1;
}

.insight-image-portrait {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
}

.services-showcase {
    padding: 120px 5%;
    background: var(--light-color);
}

.services-header-eccentric {
    text-align: center;
    margin-bottom: 80px;
}

.services-main-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.services-intro-text {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

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

.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    background: var(--white);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.service-card-large {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
}

.service-card-medium {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

.service-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

.service-content-overlay {
    padding: 35px;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.service-select-btn:hover {
    background: var(--dark-color);
    transform: translateX(5px);
}

.trust-build-scattered {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-quote-block {
    flex: 1;
}

.quote-offset-right {
    transform: translateX(40px);
}

.trust-quote-block blockquote {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    box-shadow: var(--shadow-large);
}

.trust-quote-block cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 1.1rem;
}

.trust-stat-cluster {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    background: var(--light-color);
    padding: 35px;
    border-radius: 12px;
    transform: rotate(-1deg);
}

.stat-item:nth-child(2) {
    transform: rotate(2deg);
    margin-left: 40px;
}

.stat-item:nth-child(3) {
    transform: rotate(-2deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 10px;
}

.process-reveal {
    padding: 120px 5%;
    background: var(--light-color);
}

.section-title-centered {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
}

.process-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

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

.step-left {
    margin-right: 100px;
}

.step-right {
    margin-left: 100px;
    flex-direction: row-reverse;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    min-width: 80px;
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-section-angular {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--dark-color);
}

.cta-content-skewed {
    flex: 1;
    color: var(--white);
    transform: translateX(-30px);
}

.cta-headline {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: var(--light-color);
}

.cta-button-bold {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button-bold:hover {
    background: #c49563;
    transform: translateY(-3px);
}

.cta-image-diagonal {
    flex: 1;
}

.cta-image-diagonal img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transform: rotate(3deg);
    box-shadow: var(--shadow-large);
}

.form-section-asymmetric {
    padding: 120px 5%;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
}

.form-header-block {
    margin-bottom: 50px;
}

.form-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

.form-submit-btn {
    padding: 18px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

.final-trust-block {
    padding: 100px 5%;
    background: var(--light-color);
}

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

.trust-item {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.trust-offset-1 {
    transform: translateY(20px);
}

.trust-offset-2 {
    transform: translateY(-30px);
}

.trust-offset-3 {
    transform: translateY(10px);
}

.trust-item blockquote p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.trust-item cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 20px 5%;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.sticky-cta-button {
    display: inline-block;
    padding: 12px 35px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background: #c49563;
    transform: translateY(-2px);
}

.footer-asymmetric {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 80px 5% 40px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col-brand {
    flex: 1.5;
}

.footer-brand {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

.page-hero-minimal {
    padding: 180px 5% 100px;
    text-align: center;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.page-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.about-story-section {
    padding: 100px 5%;
}

.about-story-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text-block {
    flex: 1.3;
}

.story-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.story-heading {
    font-size: 2.6rem;
    margin-bottom: 30px;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image-block {
    flex: 1;
}

.story-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
}

.philosophy-section {
    padding: 100px 5%;
    background: var(--light-color);
}

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

.philosophy-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
}

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

.philosophy-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.card-philosophy-1 {
    transform: rotate(-1deg);
}

.card-philosophy-2 {
    transform: rotate(1deg);
}

.card-philosophy-3 {
    transform: rotate(1deg);
}

.card-philosophy-4 {
    transform: rotate(-1deg);
}

.philosophy-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.team-section-scattered {
    padding: 100px 5%;
}

.team-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.team-intro-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.team-grid-irregular {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    width: 320px;
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.member-offset-1 {
    transform: translateY(30px);
}

.member-offset-2 {
    transform: translateY(-20px);
}

.member-offset-3 {
    transform: translateY(15px);
}

.team-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

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

.team-bio {
    font-size: 1rem;
    line-height: 1.6;
}

.values-section {
    padding: 100px 5%;
    background: var(--dark-color);
    color: var(--light-color);
}

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

.values-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 60px;
    text-align: center;
}

.values-list-offset {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-item {
    padding-left: 40px;
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.value-item p {
    font-size: 1.15rem;
    line-height: 1.7;
}

.experience-section {
    padding: 100px 5%;
}

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

.experience-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
}

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

.experience-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.experience-text {
    font-size: 1.15rem;
    line-height: 1.7;
}

.approach-cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    text-align: center;
}

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

.approach-cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.approach-cta-text {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 40px;
}

.approach-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.approach-cta-button:hover {
    background: #c49563;
    transform: translateY(-3px);
}

.service-detail-section {
    padding: 80px 5%;
}

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

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

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

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

.service-detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
}

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

.service-detail-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-detail-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detail-includes {
    margin-bottom: 30px;
}

.service-detail-includes h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-includes ul {
    list-style-position: inside;
    padding-left: 0;
}

.service-detail-includes li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-detail-timeline {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-detail-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-detail-cta:hover {
    background: var(--dark-color);
    transform: translateX(5px);
}

.process-overview-section {
    padding: 100px 5%;
    background: var(--light-color);
}

.process-overview-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-overview-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
}

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

.process-overview-step {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.process-step-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.process-overview-step h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.process-overview-step p {
    line-height: 1.7;
}

.pricing-transparency-section {
    padding: 100px 5%;
}

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

.pricing-transparency-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.pricing-transparency-text {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-transparency-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pricing-factors-list {
    margin: 25px 0;
    padding-left: 40px;
}

.pricing-factors-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.pricing-transparency-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pricing-transparency-cta:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

.services-faq-section {
    padding: 100px 5%;
    background: var(--light-color);
}

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

.services-faq-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
}

.services-faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-cta-final {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    text-align: center;
}

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

.services-cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.services-cta-text {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 40px;
}

.services-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.services-cta-button:hover {
    background: #c49563;
    transform: translateY(-3px);
}

.contact-info-section {
    padding: 100px 5%;
}

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-color);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-info-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-address {
    line-height: 1.8;
}

.contact-email {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-approach-section {
    padding: 100px 5%;
    background: var(--light-color);
}

.contact-approach-content {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-approach-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
}

.contact-approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-approach-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.approach-step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-approach-step h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.contact-approach-step p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-map-section {
    padding: 100px 5%;
}

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

.contact-map-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
}

.contact-map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.map-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 35px;
    border-radius: 10px;
    max-width: 400px;
}

.map-overlay-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-faq-section {
    padding: 100px 5%;
    background: var(--light-color);
}

.contact-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.contact-faq-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

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

.contact-faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    text-align: center;
}

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

.contact-cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.contact-cta-text {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 40px;
}

.contact-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-cta-button:hover {
    background: #c49563;
    transform: translateY(-3px);
}

.thanks-hero-section {
    padding: 180px 5% 100px;
    text-align: center;
}

.thanks-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.thanks-service-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.thanks-next-steps {
    padding: 100px 5%;
    background: var(--light-color);
}

.thanks-next-container {
    max-width: 1100px;
    margin: 0 auto;
}

.thanks-section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
}

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

.thanks-step {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.thanks-step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-step h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.thanks-step p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.thanks-content-section {
    padding: 100px 5%;
}

.thanks-content-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.thanks-content-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-color);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.thanks-card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.thanks-link-button {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-link-button:hover {
    background: var(--dark-color);
    transform: translateX(5px);
}

.thanks-contact-reminder {
    padding: 100px 5%;
    background: var(--dark-color);
    text-align: center;
}

.thanks-contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-contact-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.thanks-contact-text {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 15px;
}

.thanks-contact-email {
    font-size: 1.4rem;
}

.thanks-contact-email a {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-page-hero {
    padding: 180px 5% 80px;
    background: var(--light-color);
    text-align: center;
}

.legal-page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.legal-page-date {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.legal-content-section {
    padding: 80px 5%;
}

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.cookies-table tr:hover {
    background: var(--light-color);
}

@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }

    .nav-floating {
        top: 20px;
        right: 20px;
        left: 20px;
        padding: 15px 25px;
    }

    .nav-brand {
        left: 25px;
    }

    .nav-menu {
        margin-left: 150px;
        gap: 25px;
    }

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

    .hero-title-split {
        font-size: 3rem;
    }

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

    .hero-image-tilt {
        height: 500px;
    }

    .intro-stagger {
        flex-direction: column;
        gap: 60px;
    }

    .insight-container-split {
        flex-direction: column;
        gap: 60px;
    }

    .about-story-grid {
        flex-direction: column;
        gap: 60px;
    }

    .service-detail-block {
        flex-direction: column !important;
        gap: 60px;
    }

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

    .trust-build-scattered {
        flex-direction: column;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .nav-floating {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        box-shadow: var(--shadow-large);
        display: none;
        margin-left: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .hero-title-split {
        font-size: 2.5rem;
    }

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

    .hero-image-tilt {
        height: 400px;
    }

    .services-main-title {
        font-size: 2.2rem;
    }

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

    .form-container-offset {
        margin-left: 0;
    }

    .process-step {
        flex-direction: column;
    }

    .step-left,
    .step-right {
        margin: 0;
        flex-direction: column;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

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

    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
}