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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a77c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    background: var(--bg-light);
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #74604a;
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text,
.split-image {
    flex: 1;
    display: flex;
}

.split-text {
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
}

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

.label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.split-text h2,
.split-text h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.split-text h3 {
    font-size: 2rem;
}

.split-text p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.intro-section,
.showcase-split,
.materials-showcase {
    margin: 4rem 0;
}

.philosophy-block {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6rem 2rem;
    margin: 5rem 0;
}

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

.content-narrow h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.process-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.services-pricing {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-visual {
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.btn-select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #1a2a38;
}

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.testimonials-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1 1 calc(50% - 3rem);
    min-width: 300px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 4px;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

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

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-intro,
.form-container {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
}

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

.btn-submit {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #74604a;
}

.trust-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 250px;
    text-align: center;
}

.trust-item h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
}

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.sticky-cta-btn:hover {
    background: #74604a;
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    border-radius: 2px;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background: var(--bg-light);
    padding: 6rem 2rem;
    text-align: center;
}

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

.hero-content-center h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content-center p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story,
.team-section,
.workshop-section {
    margin: 5rem 0;
}

.values-section,
.approach-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.values-grid,
.approach-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card,
.approach-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 4px;
}

.value-card h3,
.approach-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p,
.approach-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.sustainability-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.sustainability-section .content-narrow p {
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-intro {
    margin: 4rem 0;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail-card {
    margin: 4rem 0;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image,
.service-detail-content {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 4px;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-includes li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.process-overview {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.process-steps {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.faq-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

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

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

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-info-section {
    padding: 4rem 0;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.contact-text {
    flex: 1;
    padding: 3rem 4rem;
    background: var(--bg-light);
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-text > p {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--secondary-color);
    font-weight: 600;
}

.visit-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.map-placeholder {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 400px;
    background: var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 2rem 3rem;
    border-radius: 4px;
}

.map-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-options {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.options-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.option-card {
    flex: 1 1 calc(33.333% - 2.5rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.option-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-contact {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 4px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-confirmation p {
    margin: 0;
    color: var(--text-dark);
}

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

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1 1 200px;
    max-width: 220px;
}

.next-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.next-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 2px;
    transition: opacity 0.3s;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.8;
}

.legal-content {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}

.legal-container p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .split-text {
        padding: 3rem 2rem;
    }

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

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

    .form-split {
        flex-direction: column;
        gap: 3rem;
    }

    .testimonials-split {
        flex-direction: column;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hamburger {
        display: flex;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .split-text h2,
    .content-narrow h2 {
        font-size: 2rem;
    }

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

    .process-card,
    .value-card,
    .approach-item,
    .trust-item,
    .option-card {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}