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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0d9d0;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-text-offset {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    transform: translateY(-40px);
}

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

.hero-subtitle-slim {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateX(30px) rotate(-2deg);
}

.hero-image-overlap img {
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.intro-irregular {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    align-items: center;
    background: var(--bg-light);
}

.intro-block-left {
    flex: 1;
    max-width: 500px;
}

.intro-block-left h2 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.intro-visual-right {
    flex: 1;
    position: relative;
    transform: translateY(40px);
}

.intro-visual-right img {
    border-radius: 2px;
}

.stat-overlay {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 180px;
    line-height: 1.4;
}

.cta-inline-asymmetric {
    padding: 3rem 5%;
    text-align: center;
}

.cta-link-arrow {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-link-arrow:hover {
    transform: translateX(10px);
}

.story-offset {
    display: flex;
    padding: 7rem 5%;
    gap: 6rem;
    align-items: center;
}

.story-image-left {
    flex: 0.8;
    transform: translateX(-50px);
}

.story-image-left img {
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.story-text-right {
    flex: 1.2;
    max-width: 600px;
}

.story-text-right h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.story-text-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.story-highlight {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.15rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
    margin-top: 2rem;
}

.trust-cards-scattered {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.section-title-centered {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.cards-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.card-trust {
    background: white;
    padding: 2.5rem;
    max-width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

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

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

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

.card-trust h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.testimonial-diagonal {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: var(--primary-color);
    color: white;
}

.quote-asymmetric {
    flex: 1;
    transform: translateX(40px);
}

.quote-asymmetric p {
    font-size: 1.8rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.quote-asymmetric cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-image-overlap {
    flex: 0.8;
    transform: rotate(2deg);
}

.testimonial-image-overlap img {
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.services-irregular {
    padding: 7rem 5% 5rem;
}

.services-title-offset {
    font-size: 3rem;
    margin-bottom: 4rem;
    padding-left: 10%;
    color: var(--primary-color);
}

.service-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-row-left .service-visual {
    flex: 1;
    transform: translateX(-40px);
}

.service-row-left .service-details {
    flex: 1;
    padding-left: 2rem;
}

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

.service-row-right .service-visual {
    flex: 1;
    transform: translateX(40px);
}

.service-row-right .service-details {
    flex: 1;
    padding-right: 2rem;
}

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

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

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

.service-result {
    font-weight: 500;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 1.5rem;
}

.service-price-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-form {
    background: white;
    padding: 3rem;
    max-width: 550px;
    width: 100%;
    border-radius: 3px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

.selected-service-display {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 2px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    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(--secondary-color);
}

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

.btn-submit-form:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgency-block {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #8b7355 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.final-cta-offset {
    padding: 7rem 5%;
    background: var(--bg-light);
}

.cta-block-asymmetric {
    max-width: 650px;
    margin-left: 15%;
}

.cta-block-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-block-asymmetric p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-scattered {
    padding: 6rem 5%;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.faq-item:nth-child(odd) {
    transform: translateY(-20px);
}

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

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

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

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

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

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

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

.footer-links a {
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-copy {
    opacity: 0.6;
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    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-actions {
    display: flex;
    gap: 1rem;
}

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

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

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

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

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 10rem 5% 5rem;
    text-align: center;
    background: var(--bg-light);
}

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

.services-intro,
.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    align-items: flex-start;
}

.story-content-wide {
    flex: 1.5;
    max-width: 700px;
}

.lead-paragraph {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.story-content-wide p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-image-offset {
    flex: 1;
    transform: translateY(60px) rotate(-1deg);
}

.about-image-offset img {
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

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

.philosophy-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background: white;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.credentials {
    padding: 5rem 5%;
}

.credentials h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.credentials-list {
    list-style: none;
    max-width: 700px;
}

.credentials-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

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

.btn-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.service-card-full {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 2px;
}

.service-card-full:nth-child(even) {
    flex-direction: row-reverse;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-visual {
    flex: 1;
}

.service-card-visual img {
    border-radius: 2px;
}

.service-card-content {
    flex: 1;
    position: relative;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-card-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-content h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-card-content ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-card-content ul li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

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

.service-card-featured {
    border: 2px solid var(--secondary-color);
}

.badge-popular {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

.faq-item-detailed {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.contact-content {
    display: flex;
    padding: 5rem 5%;
    gap: 5rem;
}

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

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

.contact-block p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-block a {
    color: var(--secondary-color);
    font-weight: 500;
}

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 8rem 3rem;
    text-align: center;
    border-radius: 2px;
    font-size: 3rem;
}

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

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

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

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 600px;
    background: white;
    padding: 4rem 3rem;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-selected {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 2px;
    margin: 2rem 0;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 2px;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    margin-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 5% 5rem;
}

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

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

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-color);
}

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

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

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--text-dark);
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem 5%;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 8rem 5% 3rem;
    }

    .hero-text-offset {
        padding-right: 0;
        transform: none;
        margin-bottom: 2rem;
    }

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

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

    .intro-irregular,
    .story-offset,
    .about-story,
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-visual-right,
    .story-image-left,
    .about-image-offset {
        transform: none;
    }

    .stat-overlay {
        left: 10px;
        bottom: 10px;
    }

    .testimonial-diagonal {
        flex-direction: column;
    }

    .quote-asymmetric {
        transform: none;
    }

    .quote-asymmetric p {
        font-size: 1.3rem;
    }

    .testimonial-image-overlap {
        transform: none;
    }

    .services-title-offset {
        padding-left: 0;
        font-size: 2rem;
    }

    .service-row,
    .service-card-full {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem;
    }

    .service-row-left .service-visual,
    .service-row-right .service-visual {
        transform: none;
    }

    .service-row-left .service-details,
    .service-row-right .service-details {
        padding: 0;
    }

    .service-price-cta,
    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-block-asymmetric {
        margin-left: 0;
    }

    .cta-block-asymmetric h2 {
        font-size: 2rem;
    }

    .cards-asymmetric-grid,
    .faq-grid-asymmetric,
    .philosophy-grid {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        transform: none;
    }

    .faq-item:nth-child(odd) {
        transform: none;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
