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

:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent-gold: #c9a961;
    --accent-dark-gold: #a68844;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f4f4f4;
    --border-light: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

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

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 1.5rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    color: var(--primary-light);
}

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

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

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

.btn-accept:hover {
    background-color: var(--accent-dark-gold);
    transform: translateY(-2px);
}

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

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

.header-asymmetric {
    padding: 2rem 4rem;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-area {
    flex: 0 0 auto;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.05em;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-floating a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    position: relative;
    margin-bottom: 8rem;
}

.hero-text-block {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 4rem 6rem;
    background-color: rgba(255, 255, 255, 0.95);
    margin-left: 8%;
    margin-top: -5rem;
}

.hero-image-diagonal {
    position: absolute;
    right: 0;
    top: 5rem;
    width: 60%;
    height: 75vh;
    background-color: var(--bg-gray);
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.intro-narrative {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto 10rem;
    padding: 0 4rem;
}

.narrative-offset {
    flex: 1;
    padding-top: 3rem;
}

.narrative-image-float {
    flex: 0 0 450px;
    margin-top: -6rem;
    background-color: var(--bg-gray);
}

.narrative-image-float img {
    width: 100%;
    height: 500px;
}

.problem-amplification {
    background-color: var(--bg-gray);
    padding: 7rem 4rem;
    margin-bottom: 8rem;
}

.problem-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

.problem-list li:before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.problem-visual {
    flex: 0 0 350px;
}

.accent-box {
    background-color: var(--accent-gold);
    padding: 2.5rem;
    color: var(--primary-dark);
    font-style: italic;
}

.accent-box p {
    color: var(--primary-dark);
    margin: 0;
}

.insight-reveal {
    margin-bottom: 10rem;
    padding: 0 4rem;
}

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

.insight-image-overlap {
    flex: 0 0 500px;
    position: relative;
    background-color: var(--bg-gray);
}

.insight-image-overlap img {
    width: 100%;
    height: 550px;
    margin-left: -3rem;
    margin-top: -2rem;
    box-shadow: 15px 15px 0 var(--accent-gold);
}

.insight-content {
    flex: 1;
    padding-left: 2rem;
}

.trust-building {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 8rem 4rem;
    margin-bottom: 8rem;
}

.trust-layout-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-header h2 {
    color: var(--primary-light);
    margin-bottom: 4rem;
    max-width: 700px;
}

.trust-elements {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.8);
}

.citation {
    color: var(--accent-gold);
    font-size: 0.9rem;
    cursor: pointer;
}

.citation:hover {
    text-decoration: underline;
}

.testimonials-scattered {
    max-width: 1300px;
    margin: 0 auto 10rem;
    padding: 0 4rem;
}

.testimonials-scattered h2 {
    margin-bottom: 4rem;
    text-align: center;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: var(--bg-gray);
    border-left: 4px solid var(--accent-gold);
}

.testimonial-card.offset-1 {
    margin-top: 0;
}

.testimonial-card.offset-2 {
    margin-top: 3rem;
}

.testimonial-card.offset-3 {
    margin-top: -2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.benefits-reveal {
    margin-bottom: 10rem;
    padding: 0 4rem;
}

.benefits-asymmetric-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.benefits-visual {
    flex: 0 0 450px;
    background-color: var(--bg-gray);
}

.benefits-visual img {
    width: 100%;
    height: 550px;
}

.benefits-content {
    flex: 1;
    padding-top: 2rem;
}

.benefit-item {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-gold);
}

.service-selection-funnel {
    margin-bottom: 8rem;
    padding: 0 4rem;
}

.service-intro-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 350px;
    background-color: var(--bg-light);
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card.selected {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--bg-gray);
}

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

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

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

.service-info h3 {
    margin-bottom: 1rem;
}

.service-info p {
    flex: 1;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-primary-offset {
    background-color: var(--bg-gray);
    padding: 6rem 4rem;
    margin-bottom: 6rem;
}

.cta-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-form-area {
    flex: 0 0 450px;
    background-color: var(--bg-light);
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.form-group input[readonly] {
    background-color: var(--bg-gray);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background-color: var(--accent-dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.final-reassurance {
    max-width: 900px;
    margin: 0 auto 8rem;
    padding: 0 4rem;
    text-align: center;
}

.reassurance-content {
    padding: 3rem;
    background-color: var(--bg-gray);
    border-top: 4px solid var(--accent-gold);
}

.footer-asymmetric {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 5rem 4rem 2rem;
}

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

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

.footer-column h4 {
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--accent-gold);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-references {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.footer-references a {
    color: var(--accent-gold);
}

.about-hero-offset {
    max-width: 1300px;
    margin: 4rem auto 8rem;
    padding: 0 4rem;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-intro {
    flex: 1;
}

.about-hero-image {
    flex: 0 0 500px;
    background-color: var(--bg-gray);
}

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

.story-section-irregular {
    max-width: 1200px;
    margin: 0 auto 10rem;
    padding: 0 4rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-content {
    flex: 1;
}

.story-image-float {
    flex: 0 0 400px;
    margin-top: 3rem;
    background-color: var(--bg-gray);
}

.story-image-float img {
    width: 100%;
    height: 450px;
}

.values-asymmetric {
    max-width: 1200px;
    margin: 0 auto 10rem;
    padding: 0 4rem;
}

.values-asymmetric h2 {
    margin-bottom: 4rem;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--bg-gray);
}

.value-card.offset-left {
    margin-top: 0;
}

.value-card.offset-right {
    margin-top: 3rem;
}

.value-card.offset-center {
    margin-top: -2rem;
}

.team-section {
    background-color: var(--bg-gray);
    padding: 6rem 4rem;
    margin-bottom: 8rem;
}

.team-intro-offset {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-image {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--primary-dark);
}

.team-image img {
    width: 100%;
    height: 500px;
}

.approach-section {
    max-width: 1300px;
    margin: 0 auto 8rem;
    padding: 0 4rem;
}

.approach-layout-irregular {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
}

.approach-highlights {
    flex: 0 0 400px;
}

.highlight-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    background-color: var(--bg-gray);
}

.services-hero {
    max-width: 1000px;
    margin: 4rem auto 6rem;
    padding: 0 4rem;
    text-align: center;
}

.services-intro-offset {
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-asymmetric {
    max-width: 1300px;
    margin: 0 auto 8rem;
    padding: 0 4rem;
}

.service-detail-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 0 0 500px;
    background-color: var(--bg-gray);
}

.service-detail-image img {
    width: 100%;
    height: 550px;
}

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

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

.service-features ul {
    list-style: none;
    margin-top: 1rem;
}

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

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

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.additional-services {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 4rem;
}

.additional-intro {
    margin-bottom: 3rem;
    text-align: center;
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-gray);
    border-top: 3px solid var(--accent-gold);
}

.additional-price {
    display: block;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.cta-services {
    background-color: var(--primary-dark);
    padding: 5rem 4rem;
    margin-bottom: 4rem;
}

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

.cta-services h2 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.cta-services p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-cta:hover {
    background-color: var(--accent-dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-hero {
    max-width: 1000px;
    margin: 4rem auto 4rem;
    padding: 0 4rem;
    text-align: center;
}

.contact-intro-offset {
    max-width: 700px;
    margin: 0 auto;
}

.contact-main-layout {
    max-width: 1300px;
    margin: 0 auto 8rem;
    padding: 0 4rem;
}

.contact-info-asymmetric {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-details {
    margin-top: 2rem;
}

.detail-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-gray);
}

.detail-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.detail-item p {
    margin: 0;
}

.detail-item .note {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-image {
    flex: 0 0 450px;
    background-color: var(--bg-gray);
}

.contact-image img {
    width: 100%;
    height: 550px;
}

.visit-info {
    background-color: var(--bg-gray);
    padding: 6rem 4rem;
    margin-bottom: 6rem;
}

.visit-content-irregular {
    max-width: 1100px;
    margin: 0 auto;
}

.visit-content-irregular h2 {
    margin-bottom: 3rem;
}

.visit-details {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.visit-block {
    flex: 1;
    min-width: 300px;
}

.appointment-info {
    max-width: 1100px;
    margin: 0 auto 6rem;
    padding: 0 4rem;
}

.appointment-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-gray);
    padding: 3rem;
}

.appointment-text {
    flex: 1;
}

.appointment-cta {
    flex: 0 0 auto;
}

.thanks-hero {
    max-width: 900px;
    margin: 5rem auto 4rem;
    padding: 0 4rem;
}

.thanks-content-centered {
    text-align: center;
    padding: 4rem 3rem;
    background-color: var(--bg-gray);
    border-top: 5px solid var(--accent-gold);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
}

.thanks-details {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0 4rem;
}

.thanks-info-asymmetric {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.info-block {
    flex: 1;
}

.next-steps {
    margin-top: 2rem;
}

.step-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--bg-gray);
    border-left: 4px solid var(--accent-gold);
}

.step-item h4 {
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.selected-service-display {
    flex: 0 0 350px;
    padding: 2rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.selected-service-display h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-dark);
}

.thanks-additional {
    max-width: 1100px;
    margin: 0 auto 6rem;
    padding: 0 4rem;
}

.additional-info {
    text-align: center;
}

.additional-info h2 {
    margin-bottom: 1.5rem;
}

.additional-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.link-card {
    padding: 1.5rem 2rem;
    background-color: var(--bg-gray);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.link-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.legal-container h1 {
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 1rem;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    margin-bottom: 1.2rem;
}

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

.legal-container ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.legal-container em {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-block {
        margin: 2rem;
        padding: 3rem;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 500px;
        top: 0;
    }

    .hero-image-diagonal img {
        clip-path: none;
    }

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

    .narrative-image-float {
        margin-top: 0;
        width: 100%;
    }

    .problem-grid-irregular {
        flex-direction: column;
        gap: 3rem;
    }

    .problem-visual {
        width: 100%;
    }

    .insight-container-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .insight-image-overlap {
        width: 100%;
    }

    .insight-image-overlap img {
        margin-left: 0;
        box-shadow: 10px 10px 0 var(--accent-gold);
    }

    .benefits-asymmetric-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .benefits-visual {
        width: 100%;
    }

    .cta-content-irregular {
        flex-direction: column;
        gap: 3rem;
    }

    .cta-form-area {
        width: 100%;
    }

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

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

    .story-section-irregular {
        flex-direction: column;
        gap: 3rem;
    }

    .story-image-float {
        margin-top: 0;
        width: 100%;
    }

    .approach-layout-irregular {
        flex-direction: column;
        gap: 3rem;
    }

    .approach-highlights {
        width: 100%;
    }

    .service-detail-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .service-detail-asymmetric.reverse .service-detail-layout {
        flex-direction: column;
    }

    .service-detail-image {
        width: 100%;
    }

    .contact-info-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-image {
        width: 100%;
    }

    .appointment-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-info-asymmetric {
        flex-direction: column;
        gap: 3rem;
    }

    .selected-service-display {
        width: 100%;
    }
}

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

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .header-asymmetric {
        padding: 1.5rem 2rem;
    }

    .nav-floating {
        width: 100%;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-text-block {
        padding: 2rem;
        margin: 1rem;
    }

    .intro-narrative,
    .problem-amplification,
    .insight-reveal,
    .trust-building,
    .testimonials-scattered,
    .benefits-reveal,
    .service-selection-funnel,
    .cta-primary-offset,
    .final-reassurance,
    .services-hero,
    .service-detail-asymmetric,
    .additional-services,
    .contact-hero,
    .contact-main-layout,
    .visit-info,
    .appointment-info,
    .thanks-hero,
    .thanks-details,
    .thanks-additional,
    .legal-content {
        padding: 0 2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content p {
        min-width: auto;
    }
}