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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #d4a574;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 900px;
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.lead-text {
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 300;
}

.story-visual {
    padding: 0;
    background: var(--bg-light);
}

.story-split {
    display: flex;
    min-height: 600px;
}

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.story-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.problem-amplify {
    padding: 100px 20px;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    line-height: 1.3;
}

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.problem-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.insight-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.insight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.insight-overlay {
    position: relative;
    z-index: 2;
    background: rgba(44, 95, 45, 0.9);
    padding: 60px 80px;
    border-radius: 20px;
    max-width: 800px;
}

.insight-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 1.3rem;
    color: white;
    line-height: 1.7;
    opacity: 0.95;
}

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

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 20px;
}

.process-flow {
    display: flex;
    gap: 30px;
}

.process-step {
    flex: 1;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.trust-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

.testimonial-cards {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.benefit-visual {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.collection-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin: -30px auto 60px;
    max-width: 700px;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.collection-item {
    flex: 0 0 calc(50% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.collection-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.collection-info {
    padding: 30px;
}

.collection-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.collection-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.additional-services {
    padding: 100px 20px;
    background: var(--bg-white);
}

.services-cards {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    flex: 1;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.urgency-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
}

.urgency-box {
    text-align: center;
    color: white;
}

.urgency-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

.urgency-note {
    font-weight: 700;
    margin-top: 30px;
}

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

.form-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.order-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.final-cta {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.sticky-btn {
    display: block;
    padding: 18px 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 95, 45, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px 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: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    transform: translateY(-2px);
}

.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

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

.content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-visual {
    padding: 0;
    background: var(--bg-light);
}

.visual-split {
    display: flex;
    min-height: 500px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.team-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.timeline-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.timeline-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.commitment-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.commitment-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.commitment-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.services-hero .hero-subtitle {
    font-size: 1.3rem;
}

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

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.detail-visual {
    flex: 1;
}

.detail-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 15px;
}

.detail-gallery {
    display: flex;
    gap: 15px;
}

.gallery-thumb {
    flex: 1;
    height: 100px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.service-features h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.service-features ul li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.btn-select-service {
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.additional-offers {
    padding: 100px 20px;
    background: var(--bg-white);
}

.offers-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.offer-card {
    flex: 1;
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.offer-card.featured {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: white;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    color: var(--primary-color);
}

.offer-card.featured .offer-icon {
    color: white;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-card.featured h3 {
    color: white;
}

.offer-price {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 15px 0 20px;
}

.offer-card.featured .offer-price {
    color: var(--accent-color);
}

.offer-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.offer-includes {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.offer-includes li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

.offer-card.featured .offer-includes li {
    color: rgba(255, 255, 255, 0.9);
}

.offer-card.featured .offer-includes li:before {
    color: var(--accent-color);
}

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

.sizing-info h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.sizing-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.sizing-cta {
    text-align: center;
    margin-top: 30px;
}

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

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

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

.order-cta-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
}

.contact-content {
    padding: 100px 20px;
    background: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.visit-flow {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.visit-step {
    flex: 1;
    text-align: center;
}

.visit-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.visit-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.visit-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.thanks-section {
    padding: 100px 20px;
    background: var(--bg-light);
    min-height: 80vh;
}

.thanks-content {
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 50px;
}

.order-summary {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: left;
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.order-summary p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

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

.thanks-contact {
    margin: 40px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
}

.thanks-contact p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 2rem;
    margin: 50px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-page strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookies-table thead {
    background: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .story-split,
    .visual-split {
        flex-direction: column;
    }

    .story-image,
    .split-image {
        height: 400px;
    }

    .problem-grid,
    .trust-grid,
    .process-flow {
        flex-direction: column;
    }

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

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

    .collection-item {
        flex: 0 0 100%;
    }

    .services-cards,
    .offers-grid {
        flex-direction: column;
    }

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

    .contact-grid {
        flex-direction: column;
    }

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

    .visit-flow {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        width: 95%;
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        background: white;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 90%;
        max-width: 300px;
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.3rem;
    }

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

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

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

    .value-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-overlay {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .story-content,
    .split-content {
        padding: 40px 30px;
    }

    .order-form {
        padding: 30px 20px;
    }

    .insight-overlay,
    .cta-overlay {
        padding: 40px 30px;
    }
}