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

:root {
    --primary: #2c3e50;
    --accent: #d4a574;
    --text: #333;
    --text-light: #666;
    --bg: #fff;
    --bg-alt: #f8f9fa;
    --border: #e0e0e0;
}

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

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

a {
    color: var(--primary);
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-offset-left {
    flex: 1;
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin-left: 5%;
}

.hero-title-large {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-hero {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.hero-visual-right {
    flex: 1;
    position: relative;
    transform: translateX(10%);
}

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

.section-overlap {
    padding: 8rem 3rem;
    position: relative;
}

.content-block-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.text-card {
    flex: 1;
    background: var(--bg);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3rem);
}

.label-small {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
}

.text-card h2 {
    font-size: 2.2rem;
    margin: 1rem 0 1.5rem;
    color: var(--primary);
    line-height: 1.3;
}

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

.img-overlap {
    flex: 1;
    max-width: 500px;
    transform: translateY(2rem);
}

.intro-shifted {
    padding: 6rem 3rem;
    background: var(--bg-alt);
}

.intro-text-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 15%;
}

.intro-lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text);
}

.visual-break {
    padding: 4rem 3rem;
}

.image-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.img-block {
    overflow: hidden;
}

.img-large {
    flex: 2;
    transform: translateY(-2rem);
}

.img-small {
    flex: 1;
    transform: translateY(3rem);
}

.services-staggered {
    padding: 8rem 3rem;
    background: var(--bg);
}

.services-header-offset {
    max-width: 700px;
    margin: 0 0 4rem 10%;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.service-cards-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

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

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

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

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

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

.service-wide {
    flex: 0 0 calc(55% - 1rem);
}

.service-highlight {
    flex: 0 0 calc(45% - 1rem);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

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

.btn-service {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.testimonial-block {
    padding: 6rem 3rem;
    background: var(--primary);
    color: #fff;
}

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

.testimonial-content blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.8;
}

.why-section-irregular {
    padding: 8rem 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.why-left h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.why-right {
    flex: 1;
    transform: translateX(-5%);
}

.cta-section-diagonal {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, var(--accent) 0%, #b88f5f 100%);
    color: #fff;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.cta-inner {
    transform: skewY(2deg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.form-section-offset {
    padding: 8rem 3rem;
    background: var(--bg-alt);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(10%);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.btn-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.trust-markers {
    padding: 4rem 3rem;
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item strong {
    font-size: 3rem;
    color: var(--accent);
}

.trust-item span {
    color: var(--text-light);
    font-size: 1.1rem;
}

.footer-minimal {
    background: var(--primary);
    color: #fff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
}

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

.footer-links a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

.sticky-btn {
    background: var(--accent);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 8rem 3rem 4rem;
    text-align: center;
    background: var(--bg-alt);
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.lead-text,
.services-intro,
.contact-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.about-story,
.philosophy-section,
.values-section,
.process-section {
    padding: 6rem 3rem;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

.story-image {
    flex: 1;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-alt);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.values-content h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-item {
    padding: 2rem;
    border-left: 4px solid var(--accent);
    background: var(--bg-alt);
}

.value-item strong {
    font-size: 1.4rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 6rem 3rem;
    background: var(--bg-alt);
    text-align: center;
}

.team-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-image {
    max-width: 900px;
    margin: 0 auto;
}

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

.process-container h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

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

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

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

.step h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about,
.services-cta,
.services-faq {
    padding: 6rem 3rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-header {
    background: var(--bg-alt);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon-large {
    font-size: 4rem;
}

.service-title-block h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.service-detail-content {
    padding: 2.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    color: var(--text-light);
}

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

.service-ideal {
    background: var(--bg-alt);
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent);
    font-style: italic;
    color: var(--text-light);
}

.faq-grid,
.faq-list {
    max-width: 1000px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 8px;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-main {
    padding: 6rem 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--accent);
    font-weight: 600;
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-quote {
    background: var(--primary);
    color: #fff;
    padding: 2rem;
    margin-top: 2rem;
}

.contact-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
}

.contact-map-placeholder {
    padding: 6rem 3rem;
    background: var(--bg-alt);
    text-align: center;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
}

.map-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.contact-expectations {
    padding: 6rem 3rem;
}

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

.expectations-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

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

.expectation-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.expectation-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.expectation-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-alternate {
    padding: 6rem 3rem;
    background: var(--bg-alt);
}

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

.alternate-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.alternate-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.alternate-option {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.alternate-option h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.alternate-option p {
    color: var(--text-light);
    line-height: 1.6;
}

.faq-contact {
    padding: 6rem 3rem;
    text-align: center;
}

.faq-contact h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

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

.service-confirmation {
    margin-top: 2rem;
}

.service-selected {
    background: var(--primary);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    display: inline-block;
}

.thanks-next-steps {
    padding: 6rem 3rem;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-alt);
    border-radius: 8px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-meanwhile {
    padding: 6rem 3rem;
    background: var(--bg-alt);
}

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

.meanwhile-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.meanwhile-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.meanwhile-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.option-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.option-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.option-card p {
    color: var(--text-light);
}

.thanks-contact-info {
    padding: 6rem 3rem;
    text-align: center;
}

.contact-info-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-alt);
    border-radius: 8px;
}

.contact-info-box h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 3rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 2rem 0 0.8rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border);
}

.cookie-table th {
    background: var(--bg-alt);
    color: var(--primary);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

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

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

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

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

    .hero-visual-right {
        transform: none;
        min-height: 300px;
    }

    .content-block-offset,
    .story-container,
    .why-section-irregular,
    .contact-container {
        flex-direction: column;
    }

    .text-card {
        transform: none;
    }

    .img-overlap {
        transform: none;
    }

    .intro-text-narrow {
        padding-left: 0;
    }

    .image-grid-asymmetric {
        flex-direction: column;
    }

    .img-large,
    .img-small {
        transform: none;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .service-main,
    .service-side,
    .service-accent,
    .service-compact,
    .service-wide,
    .service-highlight {
        flex: 0 0 100%;
    }

    .why-left {
        padding-left: 0;
    }

    .why-right {
        transform: none;
    }

    .form-container {
        transform: none;
    }

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }

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