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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #555;
    --accent-color: #d4a574;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --border-color: #e0e0e0;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

.ad-disclosure {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 30px;
    z-index: 99;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 4rem 5%;
    align-items: center;
    background: var(--light-bg);
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -5%;
    margin-top: 5%;
}

.hero-image-offset img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: -20px -20px 0 var(--accent-color);
}

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: flex-start;
    background: var(--white);
}

.intro-content {
    flex: 2;
    max-width: 700px;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.philosophy-overlap {
    display: flex;
    padding: 5rem 5%;
    gap: 3rem;
    background: var(--light-bg);
    align-items: center;
    position: relative;
}

.philosophy-overlap img {
    flex: 1;
    max-width: 450px;
    height: 550px;
    object-fit: cover;
    position: relative;
    margin-top: -4rem;
}

.philosophy-text {
    flex: 1.5;
    padding-left: 3rem;
}

.philosophy-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.link-inline {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

.link-inline:hover {
    color: var(--primary-color);
}

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

.section-header-offset {
    max-width: 600px;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-large {
    flex: 1 1 calc(60% - 1rem);
}

.service-medium {
    flex: 1 1 calc(50% - 1rem);
}

.service-small {
    flex: 1 1 calc(40% - 1rem);
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.btn-select-service {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: var(--accent-color);
}

.cta-center-offset {
    text-align: center;
    margin-top: 3rem;
    margin-left: 15%;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

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

.testimonials-stack {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.testimonials-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-block {
    max-width: 700px;
    padding: 2.5rem;
    background: var(--white);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-left {
    margin-left: 5%;
}

.testimonial-right {
    margin-left: auto;
    margin-right: 5%;
}

.testimonial-center {
    margin-left: auto;
    margin-right: auto;
}

.testimonial-block p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.process-diagonal {
    padding: 6rem 5%;
    background: var(--white);
}

.process-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    padding: 2rem;
    background: var(--light-bg);
    position: relative;
}

.step-1 {
    margin-top: 0;
}

.step-2 {
    margin-top: 2rem;
}

.step-3 {
    margin-top: 4rem;
}

.step-4 {
    margin-top: 6rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.form-section-asymmetric {
    padding: 6rem 5%;
    background: var(--light-bg);
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    max-width: 450px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.contact-form-offset {
    flex: 1.5;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

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

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

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

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

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.gallery-preview {
    padding: 6rem 5%;
    background: var(--white);
}

.gallery-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-asymmetric img {
    flex: 1 1 auto;
    max-width: calc(25% - 1rem);
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-asymmetric img:hover {
    transform: scale(1.05);
}

.footer-split {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-disclaimer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 98;
}

.sticky-cta-link {
    display: block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.sticky-cta-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-header-offset {
    padding: 5rem 5% 3rem;
    background: var(--light-bg);
    margin-left: 10%;
}

.page-header-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.page-header-offset p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.about-intro-asymmetric {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--white);
}

.about-text-main {
    flex: 1.5;
}

.about-text-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text-main p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.about-image-offset {
    flex: 1;
    height: 500px;
    object-fit: cover;
    margin-top: -5rem;
}

.values-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-left: 5px solid var(--accent-color);
}

.value-main {
    flex: 1 1 100%;
}

.value-secondary {
    flex: 1 1 calc(60% - 1rem);
}

.value-tertiary {
    flex: 1 1 calc(40% - 1rem);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.team-asymmetric {
    padding: 5rem 5%;
    background: var(--white);
}

.team-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    background: var(--light-bg);
    padding: 2.5rem;
}

.team-lead {
    flex: 1 1 100%;
    background: var(--primary-color);
    color: var(--white);
}

.team-lead h3,
.team-lead .team-role,
.team-lead p {
    color: var(--white);
}

.team-role {
    display: block;
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-medium);
    font-size: 1rem;
}

.philosophy-deep {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.philosophy-content-offset {
    max-width: 800px;
    margin-left: 15%;
}

.philosophy-content-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-content-offset p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.awards-section {
    padding: 5rem 5%;
    background: var(--white);
}

.awards-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.awards-list {
    max-width: 900px;
    margin-left: 10%;
}

.award-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.award-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

.award-title {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.approach-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
    color: var(--white);
    padding: 3rem 5%;
}

.approach-text-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.approach-text-overlay p {
    font-size: 1.15rem;
    max-width: 700px;
}

.cta-about {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail {
    display: flex;
    gap: 3rem;
    padding: 4rem 0;
    align-items: center;
}

.service-layout-left .service-detail-content {
    flex: 1.2;
}

.service-layout-left img {
    flex: 1;
}

.service-layout-right {
    flex-direction: row-reverse;
}

.service-layout-right .service-detail-content {
    flex: 1.2;
}

.service-layout-right img {
    flex: 1;
}

.service-detail img {
    height: 400px;
    object-fit: cover;
}

.service-detail h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.packages-section {
    padding: 5rem 5%;
    background: var(--light-bg);
    text-align: center;
}

.packages-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.packages-section > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.packages-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.package-card {
    flex: 1 1 calc(33.33% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-featured {
    border: 2px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.package-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.package-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.package-save {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-cta {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.contact-layout-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    background: var(--white);
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.contact-additional {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.contact-additional h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

.visit-cta {
    padding: 5rem 5%;
    background: var(--white);
    text-align: center;
}

.visit-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visit-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-container {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.thanks-content {
    flex: 1.5;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--light-bg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    background: var(--accent-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step p {
    flex: 1;
    padding-top: 0.5rem;
    color: var(--text-medium);
}

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

.thanks-image {
    flex: 1;
}

.thanks-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.legal-page {
    padding: 5rem 5%;
    background: var(--white);
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.legal-update {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    list-style: disc;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

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

    .hero-image-offset {
        margin-left: 0;
        margin-top: 2rem;
    }

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

    .philosophy-overlap {
        flex-direction: column;
    }

    .philosophy-overlap img {
        margin-top: 0;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .contact-form-offset {
        margin-top: 0;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

    .about-intro-asymmetric {
        flex-direction: column;
    }

    .about-image-offset {
        margin-top: 0;
    }

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

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

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

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

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .value-main,
    .value-secondary,
    .value-tertiary {
        flex: 1 1 100%;
    }

    .team-member,
    .team-lead {
        flex: 1 1 100%;
    }

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

    .gallery-asymmetric img {
        max-width: calc(50% - 0.5rem);
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .step {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}