/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40, 40, 40, 0.97);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 15px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

.btn-accept {
    background: #2D5A3D;
    color: white;
}

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

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

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

/* Ad Disclosure */
.ad-disclosure {
    background: rgba(212, 165, 116, 0.15);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #5a4a3a;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

/* Asymmetric Header */
.header-asymmetric {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2D5A3D;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #4a4a4a;
}

.nav-links a:hover {
    color: #2D5A3D;
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f6f3 0%, #ede8e3 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 55%;
}

.hero-title-large {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: #5a5a5a;
    line-height: 1.4;
    font-weight: 400;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 52%;
    height: 80%;
    transform: rotate(3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #c9b6a3;
}

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

/* Intro Irregular */
.intro-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1;
    padding-top: 60px;
}

.intro-block-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.intro-image-offset {
    flex: 1;
    transform: translateY(-40px);
    background: #d4a574;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intro-image-offset img {
    width: 100%;
    height: auto;
}

/* Insight Overlap */
.insight-overlap {
    position: relative;
    padding: 100px 40px;
    background: #2D5A3D;
    margin: 80px 0;
    overflow: hidden;
}

.insight-overlap::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.insight-text h2 {
    font-size: 46px;
    color: white;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.3;
}

.insight-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.story-grid-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.story-card {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.card-offset-2 {
    grid-column: 2;
    grid-row: 1 / 3;
    background: #e8ddd1;
    padding: 0;
}

.card-offset-2 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

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

.story-card h3 {
    font-size: 28px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-card p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Benefits Stacked */
.benefits-stacked {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-title-offset {
    font-size: 52px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 70px;
    margin-left: 100px;
    line-height: 1.2;
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-block {
    padding: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

.benefit-left {
    width: 55%;
    margin-left: 0;
    background: #f5f1ed;
}

.benefit-right {
    width: 50%;
    margin-left: auto;
    padding: 0;
    background: #c9b6a3;
}

.benefit-right img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.benefit-full {
    width: 70%;
    margin: 0 auto;
    background: linear-gradient(135deg, #2D5A3D 0%, #3d6b4d 100%);
    color: white;
}

.benefit-full h3 {
    color: white;
}

.benefit-full p {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-split-left,
.benefit-split-right {
    width: 48%;
}

.benefit-split-left {
    margin-left: 0;
}

.benefit-split-right {
    margin-left: auto;
}

.benefit-block h3 {
    font-size: 32px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefit-block p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Trust Section */
.trust-section {
    padding: 100px 40px;
    background: #f9f6f3;
}

.trust-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.testimonial-3 {
    padding: 0;
    background: #d4a574;
}

.testimonial-3 img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
}

.testimonial p {
    font-size: 18px;
    color: #3a3a3a;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    color: #2D5A3D;
    font-weight: 600;
    font-style: normal;
}

/* Services Preview */
.services-preview {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.title-irregular {
    font-size: 54px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 80px;
    text-align: center;
    line-height: 1.2;
}

.services-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.service-pos-1,
.service-pos-3 {
    padding: 40px;
}

.service-pos-2,
.service-pos-6 {
    padding: 0;
    background: #d4a574;
}

.service-pos-2 img,
.service-pos-6 img {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.service-pos-4 {
    grid-column: span 2;
    padding: 50px;
    background: #f5f1ed;
}

.service-pos-5 {
    padding: 40px;
}

.service-card h3 {
    font-size: 26px;
    color: #2a2a2a;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-card p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    color: #2D5A3D;
    font-weight: 700;
    margin: 25px 0;
}

.btn-service {
    padding: 14px 30px;
    background: #2D5A3D;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}

.btn-service:hover {
    background: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

/* Form Section Offset */
.form-section-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 100px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-container-asymmetric h2 {
    font-size: 42px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2D5A3D;
}

.btn-submit {
    padding: 16px 40px;
    background: #2D5A3D;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #234a31;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.3);
}

/* Final CTA Overlap */
.final-cta-overlap {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c9936a 100%);
    margin: 100px 0;
    overflow: hidden;
}

.final-cta-overlap::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta-large,
.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: #2D5A3D;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
}

.btn-cta-large:hover,
.btn-cta:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Disclaimer Section */
.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.disclaimer-content {
    padding: 30px;
    background: #f9f6f3;
    border-left: 4px solid #d4a574;
    border-radius: 8px;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 1.7;
    font-style: italic;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background: #1a1a1a;
    color: white;
    padding: 80px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

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

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

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

.footer-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-email {
    color: #d4a574;
    font-weight: 600;
}

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

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

/* About Page Styles */
.about-hero-offset {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2D5A3D 0%, #3d6b4d 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 40px;
    margin-left: 10%;
}

.about-hero-content h1 {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
}

.about-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.about-hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: #d4a574;
}

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

.about-story-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-content-offset {
    flex: 1.2;
}

.story-content-offset h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 30px;
}

.story-content-offset p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image-overlap {
    flex: 1;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: #c9b6a3;
}

.story-image-overlap img {
    width: 100%;
    height: auto;
}

.team-section-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.team-grid-irregular {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.team-member {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.member-2 {
    background: #f5f1ed;
}

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

.team-member h3 {
    font-size: 28px;
    color: #2a2a2a;
    margin-bottom: 10px;
    font-weight: 700;
}

.member-role {
    font-size: 16px;
    color: #2D5A3D;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-member p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.approach-section {
    padding: 100px 40px;
    background: #f9f6f3;
}

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

.approach-container-offset h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 60px;
    margin-left: 80px;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-block {
    padding: 45px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.block-left {
    width: 50%;
    margin-left: 0;
}

.block-right {
    width: 55%;
    margin-left: auto;
    background: #f5f1ed;
}

.block-center {
    width: 60%;
    margin: 0 auto;
}

.block-full {
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.block-full img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
}

.approach-block h3 {
    font-size: 30px;
    color: #2a2a2a;
    margin-bottom: 18px;
    font-weight: 700;
}

.approach-block p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.values-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.values-irregular h2 {
    font-size: 52px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 70px;
    text-align: center;
}

.values-layout-asymmetric {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.value-card {
    padding: 45px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-pos-1 {
    background: linear-gradient(135deg, #2D5A3D 0%, #3d6b4d 100%);
    color: white;
}

.value-pos-1 h3 {
    color: white;
}

.value-pos-1 p {
    color: rgba(255, 255, 255, 0.9);
}

.value-pos-2 {
    transform: translateY(40px);
}

.value-pos-3 {
    background: #f5f1ed;
}

.value-pos-4 {
    transform: translateY(20px);
}

.value-card h3 {
    font-size: 28px;
    color: #2a2a2a;
    margin-bottom: 18px;
    font-weight: 700;
}

.value-card p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-about-overlap {
    padding: 100px 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c9936a 100%);
    margin: 100px 0 0 0;
}

.cta-content-offset {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-offset h2 {
    font-size: 46px;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content-offset p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Services Page Styles */
.services-hero-irregular {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8ddd1 100%);
}

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

.services-hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.services-hero-text p {
    font-size: 22px;
    color: #5a5a5a;
    line-height: 1.5;
}

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

.section-bg-alt {
    background: #f9f6f3;
}

.service-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.service-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-content > p {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 17px;
    color: #4a4a4a;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2D5A3D;
    font-weight: 700;
    font-size: 18px;
}

.service-price-large {
    font-size: 42px;
    color: #2D5A3D;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-note {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 30px;
    font-style: italic;
}

.service-image {
    background: #d4a574;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.service-content-center {
    flex: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-content-center .service-features {
    text-align: left;
    display: inline-block;
}

.process-section-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.process-steps-asymmetric {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-1,
.step-4 {
    transform: translateY(30px);
}

.step-2,
.step-5 {
    background: #f5f1ed;
}

.step-3,
.step-6 {
    transform: translateY(20px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2D5A3D;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero-irregular {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2D5A3D 0%, #3d6b4d 100%);
}

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

.contact-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.contact-main-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 50px;
}

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

.info-item h3 {
    font-size: 22px;
    color: #2D5A3D;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-email-display {
    color: #2a2a2a;
    font-weight: 600;
}

.contact-image-offset {
    flex: 1;
    transform: translateY(60px);
    background: #d4a574;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
}

.contact-map-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.map-container-irregular {
    max-width: 900px;
    margin-left: 100px;
}

.map-container-irregular h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.map-container-irregular > p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.map-placeholder {
    padding: 60px;
    background: #f5f1ed;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.map-info p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-faq-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.faq-layout-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-pos-1 {
    transform: translateY(30px);
    background: #f5f1ed;
}

.faq-pos-2 {
    transform: translateY(-20px);
}

.faq-pos-3 {
    transform: translateY(20px);
}

.faq-pos-4 {
    background: linear-gradient(135deg, #2D5A3D 0%, #3d6b4d 100%);
    color: white;
}

.faq-pos-4 h3 {
    color: white;
}

.faq-pos-4 p {
    color: rgba(255, 255, 255, 0.9);
}

.faq-item h3 {
    font-size: 22px;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-contact-overlap {
    padding: 100px 40px;
    background: linear-gradient(135deg, #d4a574 0%, #c9936a 100%);
    margin: 100px 0 0 0;
}

/* Thanks Page Styles */
.thanks-section-irregular {
    min-height: 70vh;
    padding: 120px 40px;
    background: linear-gradient(135deg, #f9f6f3 0%, #ede8e3 100%);
}

.thanks-container-offset {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
}

.thanks-container-offset h1 {
    font-size: 48px;
    color: #2a2a2a;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thanks-message {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-service-info {
    padding: 25px;
    background: #f5f1ed;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-service-info p {
    font-size: 17px;
    color: #4a4a4a;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 40px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.step-item {
    padding: 30px;
    background: #f9f6f3;
    border-radius: 8px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2D5A3D;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.5;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-primary {
    background: #2D5A3D;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: #2D5A3D;
    border: 2px solid #2D5A3D;
}

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

.thanks-additional-info {
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.thanks-additional-info p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-note {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
}

/* Legal Pages */
.legal-content {
    min-height: 60vh;
    padding: 80px 40px;
    background: white;
}

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

.legal-container h1 {
    font-size: 48px;
    color: #2a2a2a;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-update {
    font-size: 15px;
    color: #7a7a7a;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 32px;
    color: #2a2a2a;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 24px;
    color: #2a2a2a;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2D5A3D;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #234a31;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-offset {
        width: 100%;
        padding: 60px 30px;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .hero-image-overlap {
        display: none;
    }

    .intro-irregular,
    .about-story-irregular,
    .contact-layout-asymmetric {
        flex-direction: column;
        gap: 50px;
    }

    .services-asymmetric-grid {
        grid-template-columns: 1fr;
    }

    .service-pos-4 {
        grid-column: span 1;
    }

    .service-detail-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .team-grid-irregular,
    .process-steps-asymmetric {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-offset {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title-offset,
    .title-irregular {
        font-size: 36px;
        margin-left: 0;
        text-align: center;
    }

    .benefit-block {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .trust-container-asymmetric,
    .values-layout-asymmetric,
    .faq-layout-asymmetric {
        grid-template-columns: 1fr;
    }

    .form-container-asymmetric {
        margin-left: 0;
        padding: 40px 30px;
    }

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

    .story-grid-asymmetric {
        grid-template-columns: 1fr;
    }

    .card-offset-2 {
        grid-column: 1;
        grid-row: auto;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .thanks-container-offset {
        padding: 50px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
