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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

.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: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b4513;
}

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    opacity: 0.9;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    color: #8b4513;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.intro-hook {
    padding: 6rem 2rem;
    background: #f8f5f1;
}

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

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-hook h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.intro-hook p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.visual-break {
    padding: 4rem 0;
    background: #fff;
}

.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-image {
    flex: 1;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.img-yarn {
    background: linear-gradient(135deg, #e8d5c4 0%, #c9a882 100%);
}

.img-artisan {
    background: linear-gradient(135deg, #b8956a 0%, #8b6f47 100%);
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #fff;
}

.problem-amplify h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.problem-icon {
    font-size: 3rem;
    color: #e74c3c;
    display: block;
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.problem-card p {
    opacity: 0.85;
    line-height: 1.7;
}

.transition-insight {
    padding: 5rem 2rem;
    background: #8b4513;
    color: #fff;
}

.insight-quote {
    font-size: 2rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.insight-subtext {
    text-align: center;
    opacity: 0.9;
    font-size: 1.1rem;
}

.story-reveal {
    padding: 6rem 2rem;
    background: #f8f5f1;
}

.story-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-image {
    flex: 1;
}

.story-content {
    flex: 1.2;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #8b4513;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.trust-social {
    padding: 5rem 2rem;
    background: #fff;
}

.trust-social h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f8f5f1;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #8b4513;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #8b4513;
}

.product-intro {
    padding: 5rem 2rem 2rem;
    background: #fff;
    text-align: center;
}

.product-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.products-showcase {
    padding: 3rem 2rem 6rem;
    background: #fff;
}

.product-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 300px;
    background: #f8f5f1;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.product-image .image-placeholder {
    height: 300px;
    border-radius: 0;
}

.img-sweater-1 {
    background: linear-gradient(135deg, #c9a882 0%, #a68a6a 100%);
}

.img-cardigan {
    background: linear-gradient(135deg, #b8956a 0%, #96754e 100%);
}

.img-scarf {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
}

.img-oversized {
    background: linear-gradient(135deg, #8b6f47 0%, #6e5938 100%);
}

.img-blanket {
    background: linear-gradient(135deg, #e8d5c4 0%, #c9a882 100%);
}

.img-beanie {
    background: linear-gradient(135deg, #a68a6a 0%, #8b6f47 100%);
}

.product-info {
    padding: 2rem;
}

.product-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-info p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #8b4513;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #6e4310;
}

.value-depth {
    padding: 6rem 2rem;
    background: #f8f5f1;
}

.value-depth h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b4513;
    opacity: 0.3;
    min-width: 80px;
}

.value-item h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.value-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cta-mid {
    padding: 5rem 2rem;
    background: #2c3e50;
    text-align: center;
}

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

.cta-box h3 {
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #8b4513;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.guarantee-trust {
    padding: 6rem 2rem;
    background: #fff;
}

.guarantee-trust h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.guarantee-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f5f1;
    border-radius: 12px;
    border-top: 4px solid #8b4513;
}

.guarantee-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.guarantee-card p {
    color: #555;
    line-height: 1.7;
}

.urgency-soft {
    padding: 2rem;
    background: #fff3cd;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.urgency-text {
    text-align: center;
    font-size: 1.1rem;
    color: #856404;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-form {
    padding: 6rem 2rem;
    background: #f8f5f1;
}

.final-cta-form h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #8b4513;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.final-trust {
    padding: 2rem;
    background: #f8f5f1;
    text-align: center;
}

.trust-note {
    color: #27ae60;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
}

.site-footer {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #8b4513;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #fff;
}

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

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

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

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    color: #fff;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story {
    padding: 6rem 2rem;
    background: #fff;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-mission {
    padding: 5rem 2rem;
    background: #f8f5f1;
}

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

.mission-card {
    flex: 1;
    min-width: 300px;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.about-team {
    padding: 6rem 2rem;
    background: #fff;
}

.about-team h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.team-info {
    margin-top: 3rem;
}

.team-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-process {
    padding: 6rem 2rem;
    background: #f8f5f1;
}

.about-process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.7;
}

.about-values {
    padding: 6rem 2rem;
    background: #fff;
}

.about-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f8f5f1;
    border-radius: 12px;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8b4513;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.about-cta {
    padding: 5rem 2rem;
    background: #2c3e50;
    color: #fff;
    text-align: center;
}

.about-cta h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-intro {
    padding: 3rem 2rem;
    background: #fff;
}

.services-list {
    padding: 4rem 2rem;
    background: #f8f5f1;
}

.service-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

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

.service-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
}

.btn-order {
    padding: 1rem 2rem;
    background: #8b4513;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-order:hover {
    background: #6e4310;
}

.services-custom {
    padding: 6rem 2rem;
    background: #fff;
    text-align: center;
}

.services-custom h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.custom-info {
    max-width: 700px;
    margin: 0 auto;
}

.custom-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.services-guarantee {
    padding: 5rem 2rem;
    background: #f8f5f1;
}

.services-guarantee h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.guarantee-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.guarantee-item p {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
}

.contact-info {
    padding: 5rem 2rem;
    background: #f8f5f1;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #8b4513;
}

.contact-card p {
    color: #555;
    line-height: 1.8;
}

.contact-card a {
    color: #8b4513;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-faq {
    padding: 6rem 2rem;
    background: #fff;
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.faq-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f5f1;
    border-radius: 10px;
    border-left: 4px solid #8b4513;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 2rem;
    background: #f8f5f1;
    text-align: center;
}

.contact-cta h3 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-hero {
    padding: 8rem 2rem 6rem;
    background: #f8f5f1;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #555;
}

.order-summary {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.order-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.selected-product {
    font-size: 1.5rem;
    color: #8b4513;
    font-weight: 600;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
}

.step-num {
    min-width: 40px;
    height: 40px;
    background: #8b4513;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step p {
    color: #555;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #8b4513;
    text-decoration: none;
    border: 2px solid #8b4513;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #8b4513;
    color: #fff;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
}

.contact-note a {
    color: #8b4513;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 4rem 2rem;
    background: #fff;
}

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

.legal-text h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-text a {
    color: #8b4513;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

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

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

.cookie-table th {
    background: #f8f5f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

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

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

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

    .nav-menu li {
        padding: 0.8rem 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .story-layout {
        flex-direction: column;
    }

    .problem-grid,
    .guarantee-grid {
        flex-direction: column;
    }

    .product-row {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

    .value-item {
        flex-direction: column;
    }

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

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

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

    .page-header h1 {
        font-size: 2.5rem;
    }

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

    .mission-grid,
    .values-grid,
    .contact-grid,
    .guarantee-list {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}
