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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #fff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #e0e0e0;
}

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

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

.nav-minimal {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.nav-menu a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.nav-menu a.active {
    font-weight: 700;
}

.editorial-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

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

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

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

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-intro,
.problem-section,
.insight-reveal,
.story-section,
.trust-building,
.transformation-section,
.services-reveal,
.urgency-section,
.guarantee-section,
.final-testimonials,
.form-section,
.closing-section {
    padding: 4rem 0;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.narrow-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.narrow-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.link-arrow {
    font-size: 1.1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: #666;
    border-bottom-color: #666;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid #1a1a1a;
    background-color: #f5f5f5;
}

.quote-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-block cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.image-inline {
    margin: 3rem 0;
}

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

.stat-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 3px solid #666;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.principles-list {
    list-style: none;
    margin: 2rem 0;
}

.principles-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.principles-list strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.cta-block-editorial {
    margin: 4rem 0;
    padding: 3rem 2rem;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
}

.cta-intro {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    transition: all 0.3s ease;
}

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

.services-grid-editorial {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
}

.detail-item {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    color: #1a1a1a;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #333;
}

.availability-notice {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
}

.availability-notice p {
    margin-bottom: 0.5rem;
}

.notice-subtext {
    font-size: 0.95rem;
    color: #666;
}

.guarantee-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.guarantee-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.guarantee-box ul {
    list-style: none;
    padding-left: 0;
}

.guarantee-box li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.guarantee-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
}

.testimonial-block {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
}

.testimonial-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.editorial-form {
    margin: 3rem 0;
    padding: 3rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    border: 1px solid #ccc;
    background-color: #fff;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

.closing-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 5rem 0;
}

.closing-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.sticky-text {
    font-size: 1rem;
}

.btn-sticky {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #f0f0f0;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bbb;
}

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

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

.footer-section a {
    color: #bbb;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.thanks-message {
    text-align: left;
    margin-top: 3rem;
}

.next-steps {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.steps-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.thanks-info p {
    margin-bottom: 0.5rem;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.thanks-guarantee {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f5f5f5;
}

.thanks-guarantee h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.services-page,
.about-page,
.contact-page {
    background-color: #fff;
}

.services-intro,
.about-intro,
.contact-intro {
    padding: 3rem 0;
}

.philosophy-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

.philosophy-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.details-list {
    list-style: none;
    padding-left: 0;
}

.details-list li {
    margin-bottom: 0.7rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.95rem;
}

.details-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.color-options {
    margin-top: 1.5rem;
}

.color-options h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.color-options p {
    font-size: 0.95rem;
    color: #666;
}

.process-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #1a1a1a;
}

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

.process-step h3 {
    font-size: 1.3rem;
    margin: 0;
}

.process-step p {
    font-size: 1rem;
    margin: 0;
    color: #555;
}

.guarantee-info {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.guarantee-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.guarantee-item {
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #4caf50;
}

.guarantee-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.guarantee-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.origin-story,
.philosophy-section,
.team-section,
.values-section,
.journey-section,
.future-section {
    padding: 4rem 0;
}

.principles-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.principle-block {
    padding: 2rem;
    background-color: #f9f9f9;
}

.principle-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.principle-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.artisan-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.artisan-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.artisan-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.artisan-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.stats-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-about {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    text-align: center;
}

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

.contact-info {
    padding: 3rem 0;
}

.info-block {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-detail {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
}

.visit-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.visit-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.visit-feature {
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #1a1a1a;
}

.visit-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
}

.visit-feature p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.map-section,
.newsletter-section,
.social-section {
    padding: 4rem 0;
}

.directions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.direction-item {
    padding: 1.5rem;
    background-color: #f9f9f9;
}

.direction-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}

.direction-item p {
    font-size: 1rem;
    margin: 0;
}

.map-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.newsletter-note,
.social-note {
    font-size: 0.95rem;
    color: #666;
    margin-top: 1rem;
}

.info-emphasis {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.social-info {
    margin: 2rem 0;
}

.legal-page {
    background-color: #fff;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.7rem;
    font-weight: 400;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.legal-section li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
}

.update-date {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

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

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

.legal-table th {
    background-color: #f5f5f5;
    font-weight: 700;
    font-family: 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.legal-table td {
    font-size: 0.95rem;
}

.cookie-preferences-link {
    margin: 3rem 0;
    text-align: center;
}

.acceptance-notice {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #1a1a1a;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .nav-toggle {
        display: none;
    }

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

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

    .stat-blocks {
        flex-direction: row;
    }

    .services-grid-editorial {
        gap: 5rem;
    }

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

    .service-image {
        width: 45%;
        height: auto;
        min-height: 400px;
    }

    .service-content {
        width: 55%;
    }

    .sticky-content {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .thanks-cta {
        flex-direction: row;
        justify-content: center;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: 250px;
    }

    .guarantee-grid {
        flex-direction: row;
    }

    .stats-about {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-about {
        flex: 1;
        min-width: 200px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 300px;
    }

    .visit-features {
        flex-direction: row;
    }

    .directions {
        flex-direction: row;
    }
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid #e0e0e0;
    }

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

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

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

    .narrow-content {
        padding: 2rem 1.5rem;
    }

    .service-card:nth-child(even) {
        flex-direction: column-reverse;
    }

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