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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #8B7355;
    --accent-color: #C9A86A;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F8F6F3;
    --bg-white: #FFFFFF;
    --border-color: #E0DDD8;
    --success-color: #2D5F3F;
    --error-color: #C74242;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    margin-top: 80px;
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 3rem 4rem 5rem;
    background: var(--bg-light);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary,
.btn-outline,
.btn-large,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background: #234a31;
}

.intro-asymmetric {
    padding: 8rem 5rem;
    background: var(--bg-white);
}

.intro-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-visual {
    flex: 1;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.philosophy-split {
    display: flex;
    min-height: 70vh;
}

.phil-image,
.phil-content {
    flex: 1;
}

.phil-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phil-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--bg-light);
}

.phil-content h3 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.phil-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 8rem 5rem;
    background: var(--bg-white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    padding: 3rem 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-link {
    color: var(--primary-color);
    font-weight: 600;
}

.service-link:hover {
    text-decoration: underline;
}

.trust-builder-split {
    display: flex;
    min-height: 70vh;
}

.trust-left,
.trust-right {
    flex: 1;
    padding: 5rem;
}

.trust-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
    color: white;
}

.trust-left h3 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stat-group {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.trust-right {
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.testimonial-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-box cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.process-alternating {
    padding: 8rem 5rem;
    background: var(--bg-white);
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.section-header-left h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.process-step {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.process-step.step-right {
    flex-direction: row-reverse;
}

.step-content,
.step-visual {
    flex: 1;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.step-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.step-visual img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.specialization-split {
    display: flex;
    min-height: 70vh;
}

.spec-content,
.spec-image {
    flex: 1;
}

.spec-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--bg-light);
}

.spec-content h3 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.spec-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-split-fullwidth {
    display: flex;
    min-height: 60vh;
}

.cta-left-panel,
.cta-right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.cta-left-panel {
    background: var(--secondary-color);
    color: white;
}

.cta-left-panel h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-left-panel p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.cta-right-panel {
    background: var(--bg-light);
    gap: 1.5rem;
    align-items: flex-start;
}

.service-selector {
    padding: 8rem 5rem;
    background: var(--bg-white);
}

.selector-container {
    max-width: 1400px;
    margin: 0 auto;
}

.selector-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.selector-container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.selector-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selector-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.selector-card.selected {
    border-color: var(--primary-color);
    background: white;
}

.selector-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.selector-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.selector-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #234a31;
}

.contact-form-section {
    padding: 8rem 5rem;
    background: var(--bg-light);
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.project-form {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-checkbox {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
}

.form-group-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 5rem 5rem 2rem;
}

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

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

.footer-column h5 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

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

.sticky-cta span {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-sticky:hover {
    background: var(--bg-light);
}

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

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

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

.cookie-content p {
    flex: 1;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero-services {
    margin-top: 80px;
    padding: 6rem 5rem;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.service-detail {
    padding: 6rem 5rem;
}

.service-detail.service-alternate {
    background: var(--bg-light);
}

.service-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.service-info,
.service-visual {
    flex: 1;
}

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

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-info h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-note {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 2rem 0;
}

.service-detail.service-alternate .service-note {
    background: white;
}

.service-visual img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.services-cta {
    padding: 6rem 5rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-content-center {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.why-choose-split {
    padding: 6rem 5rem;
    background: var(--bg-white);
}

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

.why-content h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.why-item {
    flex: 1;
    min-width: 280px;
}

.why-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-hero-split {
    margin-top: 80px;
    display: flex;
    min-height: 70vh;
}

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

.about-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--bg-light);
}

.about-hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section {
    padding: 8rem 5rem;
    background: var(--bg-white);
}

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

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

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.values-split {
    display: flex;
    min-height: 75vh;
}

.values-left,
.values-right {
    flex: 1;
}

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--bg-light);
}

.values-right h3 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: 8rem 5rem;
    background: var(--bg-white);
}

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

.team-member {
    flex: 1;
    min-width: 280px;
}

.member-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-alternating {
    padding: 8rem 5rem;
    background: var(--bg-light);
}

.approach-header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.approach-step {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-step.approach-reverse {
    flex-direction: row-reverse;
}

.approach-content,
.approach-image {
    flex: 1;
}

.approach-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.recognition-section {
    padding: 8rem 5rem;
    background: var(--bg-white);
}

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

.recognition-content h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.recognition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.recognition-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.recognition-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.recognition-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.about-cta {
    padding: 8rem 5rem;
    background: var(--primary-color);
    text-align: center;
}

.cta-container-centered {
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-container-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-container-centered p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-hero {
    margin-top: 80px;
    padding: 6rem 5rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-main-split {
    display: flex;
    min-height: 70vh;
}

.contact-info-panel,
.contact-map-panel {
    flex: 1;
    padding: 5rem;
}

.contact-info-panel {
    background: var(--bg-white);
}

.contact-map-panel {
    background: var(--bg-light);
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.directions-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-preference-note {
    padding: 5rem;
    background: var(--bg-light);
    text-align: center;
}

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

.preference-container h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.preference-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.faq-section {
    padding: 6rem 5rem;
    background: var(--bg-white);
}

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

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.thanks-hero {
    margin-top: 80px;
    padding: 6rem 5rem;
    background: var(--bg-light);
    text-align: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-details {
    padding: 6rem 5rem;
    background: var(--bg-white);
}

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

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.next-steps {
    margin-bottom: 4rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-note {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-note p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.note-small {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.thanks-explore {
    padding: 6rem 5rem;
    background: var(--bg-light);
}

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

.explore-container h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.explore-container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.explore-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.explore-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.explore-card p {
    font-size: 1rem;
    color: var(--text-light);
}

.thanks-reassurance {
    padding: 5rem;
    background: var(--bg-white);
    text-align: center;
}

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

.reassurance-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.reassurance-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.legal-hero {
    margin-top: 80px;
    padding: 5rem 5rem 3rem;
    background: var(--bg-light);
}

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

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-date {
    font-size: 1rem;
    color: var(--text-light);
}

.legal-content {
    padding: 5rem;
    background: var(--bg-white);
}

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

.legal-section {
    margin-bottom: 3.5rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.legal-section li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

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

@media (max-width: 1024px) {
    .hero-split,
    .philosophy-split,
    .trust-builder-split,
    .specialization-split,
    .cta-split-fullwidth,
    .service-split,
    .values-split,
    .about-hero-split,
    .contact-main-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .phil-image,
    .phil-content,
    .trust-left,
    .trust-right,
    .spec-content,
    .spec-image,
    .cta-left-panel,
    .cta-right-panel,
    .service-info,
    .service-visual,
    .values-left,
    .values-right,
    .about-hero-left,
    .about-hero-right,
    .contact-info-panel,
    .contact-map-panel {
        min-height: auto;
    }

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

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

    .process-step.step-right,
    .approach-step.approach-reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-split,
    .services-preview,
    .process-alternating,
    .service-selector,
    .contact-form-section,
    .main-footer,
    .service-detail,
    .story-section,
    .team-section,
    .approach-alternating,
    .recognition-section,
    .about-cta,
    .contact-hero,
    .contact-preference-note,
    .faq-section,
    .thanks-hero,
    .thanks-details,
    .thanks-explore,
    .thanks-reassurance,
    .legal-hero,
    .legal-content {
        padding: 4rem 2rem;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

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

    .intro-asymmetric {
        padding: 4rem 2rem;
    }

    .intro-offset {
        flex-direction: column;
        gap: 3rem;
    }

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

    .service-card {
        min-width: auto;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .sticky-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .selector-grid,
    .why-grid,
    .team-grid,
    .recognition-grid,
    .faq-grid,
    .explore-links {
        flex-direction: column;
    }
}
