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

:root {
    --primary-color: #2c2c2c;
    --accent-color: #a87d5f;
    --light-bg: #f9f7f4;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0ddd8;
}

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

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

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

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

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

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-color);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.narrative-intro {
    padding: 120px 20px;
    background: var(--light-bg);
}

.intro-hook {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.narrative-intro p {
    font-size: 18px;
    margin-bottom: 25px;
}

.visual-break {
    padding: 0;
}

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

.problem-amplification {
    padding: 100px 20px;
}

.offset-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--primary-color);
    color: #fff;
}

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

.insight-card h3 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 300;
}

.insight-card p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.story-flow {
    padding: 120px 20px;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.story-item:nth-child(even) {
    flex-direction: row-reverse;
}

.story-item img {
    width: 45%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding-top: 20px;
}

.story-content h4 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
}

.story-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-building {
    padding: 100px 20px;
    background: var(--light-bg);
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background: #fff;
    border-left: 4px solid var(--accent-color);
}

.quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author {
    font-size: 15px;
    color: var(--text-light);
}

.visual-divider {
    padding: 0;
}

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

.benefits-reveal {
    padding: 120px 20px;
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    font-weight: 300;
}

.benefits-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background: var(--light-bg);
}

.benefit-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-inline {
    padding: 80px 20px;
    background: var(--accent-color);
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
}

.process-visual {
    padding: 100px 20px;
    background: var(--light-bg);
}

.process-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 70px;
    font-weight: 300;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.pricing-reveal {
    padding: 120px 20px;
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 300;
}

.pricing-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 70px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    padding: 40px 30px;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    background: var(--primary-color);
    color: #fff;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.service-card.featured .price {
    color: #fff;
}

.btn-service {
    display: block;
    padding: 14px 30px;
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-service:hover {
    background: var(--primary-color);
    text-decoration: none;
}

.service-card.featured .btn-service {
    background: #fff;
    color: var(--primary-color);
}

.service-card.featured .btn-service:hover {
    background: var(--accent-color);
    color: #fff;
}

.urgency-element {
    padding: 60px 20px;
    background: #fff5e6;
}

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

.urgency-text {
    font-size: 22px;
    margin-bottom: 10px;
}

.urgency-subtext {
    font-size: 16px;
    color: var(--text-light);
}

.final-cta {
    padding: 120px 20px;
    background: var(--light-bg);
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 300;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.order-form {
    background: #fff;
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.site-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 30px;
    background: var(--accent-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    color: #fff;
    padding: 20px;
    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;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background: #8f6a4e;
}

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

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

.page-hero {
    margin-top: 80px;
    padding: 100px 20px 60px;
    background: var(--light-bg);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-lead {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 80px 20px;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-image {
    width: 45%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.philosophy {
    padding: 100px 20px;
    background: var(--light-bg);
}

.philosophy h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 300;
}

.philosophy-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background: #fff;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-visual {
    padding: 0;
    position: relative;
}

.values-wrapper {
    position: relative;
}

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

.values-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 50px 20px;
    text-align: center;
}

.values-overlay h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 300;
}

.approach {
    padding: 100px 20px;
}

.approach h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 300;
}

.approach-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.approach-step {
    flex: 1;
    padding: 30px;
    background: var(--light-bg);
}

.approach-step h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--accent-color);
}

.approach-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-about {
    padding: 80px 20px;
    background: var(--light-bg);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #fff;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail {
    max-width: 1100px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

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

.service-image {
    width: 45%;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-light);
}

.service-includes {
    margin-bottom: 30px;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-includes ul {
    padding-left: 20px;
}

.service-includes li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.service-pricing {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    margin-right: 15px;
}

.price-amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--accent-color);
}

.process-info {
    padding: 80px 20px;
    background: var(--light-bg);
}

.process-info h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-cta {
    padding: 80px 20px;
}

.contact-content {
    padding: 80px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 400;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--accent-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
}

.note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
}

.contact-image {
    width: 100%;
    margin-bottom: 30px;
}

.contact-note {
    padding: 30px;
    background: var(--light-bg);
}

.contact-note h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.faq-item {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

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

.contact-cta {
    padding: 80px 20px;
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: var(--light-bg);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4caf50;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 300;
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
}

.thanks-details {
    padding: 80px 20px;
}

.thanks-details .container {
    max-width: 1100px;
    display: flex;
    gap: 60px;
}

.thanks-info {
    flex: 1.2;
}

.thanks-info h2 {
    font-size: 34px;
    margin-bottom: 50px;
    font-weight: 400;
}

.next-steps {
    margin-bottom: 50px;
}

.next-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

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

.service-selected {
    padding: 25px;
    background: var(--light-bg);
    margin-bottom: 30px;
}

.service-selected h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-selected p {
    font-size: 16px;
    color: var(--text-color);
}

.thanks-note {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-visual {
    flex: 0.8;
}

.thanks-image {
    width: 100%;
    margin-bottom: 30px;
}

.additional-info {
    padding: 30px;
    background: var(--light-bg);
}

.additional-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.additional-info ul {
    list-style: none;
}

.additional-info li {
    margin-bottom: 10px;
}

.additional-info a {
    font-size: 15px;
    color: var(--accent-color);
}

.thanks-social {
    padding: 60px 20px;
    background: var(--light-bg);
    text-align: center;
}

.thanks-social h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.thanks-social p {
    font-size: 17px;
    color: var(--text-light);
}

.legal-page {
    margin-top: 80px;
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 300;
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 500;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 500;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

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

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

    .offset-layout,
    .about-content,
    .contact-layout,
    .thanks-details .container {
        flex-direction: column;
    }

    .story-item {
        flex-direction: column !important;
    }

    .story-item img {
        width: 100%;
    }

    .process-steps,
    .approach-steps {
        flex-direction: column;
    }

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

    .service-image {
        width: 100%;
    }

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

    .benefit-card,
    .philosophy-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }
}