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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-bg: #f8f7f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-cookie-accept:hover {
    background: #6f5a43;
}

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-fullscreen {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    font-size: 18px;
    transition: var(--transition);
}

.cta-hero:hover {
    background: #6f5a43;
    transform: translateY(-2px);
}

.narrative-intro {
    padding: 80px 20px;
    background: var(--white);
}

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

.lead-text {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.5;
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.visual-break {
    margin: 60px 0;
}

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

.image-caption {
    text-align: center;
    padding: 25px 20px;
    background: var(--light-bg);
}

.image-caption p {
    font-size: 16px;
    font-style: italic;
    color: #666;
}

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

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

.split-text,
.split-visual {
    flex: 1 1 450px;
}

.split-text h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 25px;
    line-height: 1.2;
}

.split-text p {
    font-size: 19px;
    margin-bottom: 20px;
}

.problem-list {
    margin-top: 30px;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.problem-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

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

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

.centered-insight h2 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 35px;
}

.insight-quote {
    font-size: clamp(24px, 3vw, 32px);
    font-style: italic;
    margin: 40px 0;
    line-height: 1.5;
}

.insight-quote em {
    color: var(--accent-color);
    font-style: normal;
}

.principle-text {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    color: var(--accent-color);
}

.story-continuation {
    padding: 80px 20px;
    background: var(--white);
}

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

.before-after {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.comparison-item {
    flex: 1 1 450px;
}

.comparison-item img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 15px;
}

.comparison-label {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.method-introduction {
    padding: 100px 20px;
    background: var(--white);
}

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

.contained-content h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 30px;
    text-align: center;
}

.contained-content > p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.method-pillars {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.pillar {
    flex: 1 1 280px;
    padding: 35px;
    background: var(--light-bg);
    border-radius: 4px;
}

.pillar h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.pillar p {
    font-size: 17px;
    line-height: 1.7;
}

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

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

.testimonial {
    flex: 1 1 300px;
    padding: 40px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.trust-builder {
    padding: 100px 20px;
    background: var(--white);
}

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

.trust-content h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 50px;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-point {
    flex: 1 1 250px;
    padding: 30px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.trust-point:hover {
    border-color: var(--accent-color);
}

.trust-point h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.trust-point p {
    font-size: 16px;
    line-height: 1.6;
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

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

.benefits-container h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 60px;
    text-align: center;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.benefit-card {
    flex: 1 1 260px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.benefit-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.7;
}

.visual-interlude {
    margin: 0;
}

.atmospheric-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.collections-intro {
    padding: 80px 20px;
    background: var(--white);
}

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

.collections-header h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 20px;
}

.collections-header p {
    font-size: 20px;
    color: #666;
}

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

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    flex: 1 1 400px;
    min-height: 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1 1 500px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.service-tagline {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.service-content > p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin: 25px 0;
}

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 0;
}

.btn-select-service {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    font-size: 17px;
    transition: var(--transition);
    align-self: flex-start;
}

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

.urgency-block {
    padding: 60px 20px;
    background: #fef5e7;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
}

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

.urgency-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.urgency-note {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

.form-section {
    padding: 100px 20px;
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.order-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-group input[readonly] {
    background: #e9e9e9;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    margin-top: 25px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #6f5a43;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

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

.reassurance-item {
    flex: 1 1 280px;
    text-align: center;
}

.reassurance-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.reassurance-item p {
    font-size: 16px;
    color: #666;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-button {
    display: block;
    padding: 18px 35px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.sticky-cta-button:hover {
    background: #6f5a43;
    transform: scale(1.05);
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    font-size: 15px;
    opacity: 0.85;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: clamp(18px, 2.5vw, 22px);
    opacity: 0.95;
}

.story-section {
    padding: 80px 20px;
    background: var(--white);
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

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

.timeline-section {
    padding: 80px 20px;
    background: var(--white);
}

.timeline {
    margin-top: 50px;
}

.timeline-item {
    padding: 30px 0;
    border-left: 3px solid var(--accent-color);
    padding-left: 40px;
    position: relative;
}

.timeline-item:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 35px;
    width: 14px;
    height: 14px;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.timeline-item p {
    font-size: 17px;
    line-height: 1.7;
}

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

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

.values-container h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-card {
    flex: 1 1 260px;
    padding: 40px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background: var(--white);
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-section {
    padding: 100px 20px;
    background: var(--secondary-color);
    color: var(--white);
}

.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.commitment-section p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-section {
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-cta-large:hover {
    background: #6f5a43;
    transform: translateY(-2px);
}

.services-intro {
    padding: 60px 20px;
    background: var(--white);
}

.services-grid {
    padding: 40px 20px;
    background: var(--light-bg);
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1 1 450px;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1 1 500px;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.service-detail-content ul {
    margin: 20px 0;
}

.service-detail-content li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 17px;
}

.service-detail-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 30px 0;
}

.btn-service {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

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

.special-offers {
    padding: 80px 20px;
    background: var(--white);
}

.offers-container {
    max-width: 1100px;
    margin: 0 auto;
}

.offers-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.offer-card {
    margin-bottom: 50px;
    padding: 50px;
    background: var(--light-bg);
    border-radius: 8px;
}

.offer-card.highlight {
    background: linear-gradient(135deg, #fef5e7, #fff9f0);
    border: 2px solid var(--accent-color);
}

.offer-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.offer-card > p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.offer-includes {
    margin: 30px 0;
}

.offer-includes h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.offer-includes ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
}

.offer-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.offer-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 0;
}

.price-note {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.btn-offer {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-offer:hover {
    background: #6f5a43;
    transform: translateY(-2px);
}

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

.quality-grid {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.quality-item {
    flex: 1 1 250px;
    padding: 30px;
    background: var(--white);
    border-radius: 4px;
}

.quality-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.quality-item p {
    font-size: 16px;
    line-height: 1.7;
}

.sizing-info {
    padding: 80px 20px;
    background: var(--white);
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.final-cta h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 20px;
}

.final-cta p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-info {
    padding: 80px 20px;
    background: var(--white);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-method {
    flex: 1 1 300px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.contact-method h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.contact-method p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-detail {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.9;
}

.contact-detail strong {
    color: var(--primary-color);
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-note {
    margin-top: 20px;
    font-size: 15px;
    font-style: italic;
    color: #666;
}

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

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

.contact-cta {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--accent-color), #6f5a43);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

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

.thanks-content h1 {
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 25px;
}

.thanks-message {
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    opacity: 0.95;
}

.next-steps {
    padding: 80px 20px;
    background: var(--white);
}

.steps-grid {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1 1 280px;
    padding: 35px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.step-item p {
    font-size: 17px;
    line-height: 1.7;
}

.thanks-reassurance {
    padding: 60px 20px;
    background: var(--light-bg);
}

.thanks-reassurance h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

.thanks-reassurance p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.thanks-reassurance a {
    color: var(--accent-color);
    text-decoration: underline;
}

.continue-browsing {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

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

.legal-page {
    padding: 80px 20px;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.legal-container p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-container ul {
    margin: 20px 0 20px 25px;
}

.legal-container ul li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .brand-logo {
        font-size: 20px;
    }

    .hero-fullscreen {
        height: 70vh;
        min-height: 500px;
    }

    .split-layout {
        gap: 40px;
    }

    .method-pillars {
        gap: 25px;
    }

    .testimonials-flow {
        gap: 25px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image {
        min-height: 300px;
    }

    .service-content {
        padding: 35px;
    }

    .service-detail-card {
        flex-direction: column;
    }

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

    .service-detail-image {
        min-height: 300px;
    }

    .service-detail-content {
        padding: 35px;
    }

    .order-form {
        padding: 30px;
    }

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

    .sticky-cta-button {
        padding: 15px 25px;
        font-size: 15px;
    }

    .contact-container {
        gap: 30px;
    }

    .contact-method {
        padding: 30px;
    }

    .offer-card {
        padding: 35px;
    }

    .footer-content {
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

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

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

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

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