:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #52b788;
    --dark-bg: #081c15;
    --light-bg: #f8f9fa;
    --text-dark: #212529;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 3rem 5%;
    gap: 4rem;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}

.hero-visual-right {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.hero-visual-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-block {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.intro-offset-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: start;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-highlight {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.intro-highlight blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-highlight cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.service-preview-cards {
    padding: 5rem 5%;
}

.service-preview-cards h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.cards-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(40% - 1rem);
    min-width: 280px;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    margin-bottom: 1rem;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: auto;
}

.price-tag {
    display: inline-block;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow::after {
    content: ' →';
    margin-left: 0.3rem;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 0.7rem;
}

.insight-split {
    display: flex;
    min-height: 600px;
    background: var(--dark-bg);
    color: var(--white);
}

.split-left-visual {
    flex: 1;
    position: relative;
    margin-right: -50px;
    z-index: 1;
}

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

.split-right-content {
    flex: 1;
    padding: 4rem 5% 4rem 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.testimonial-asymmetric {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.testimonial-item {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-item cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.process-stacked {
    padding: 5rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.process-stacked h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    align-items: start;
}

.step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 60px;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

.form-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    color: var(--primary-color);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.benefits-visual {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.benefits-visual h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-item:nth-child(odd) {
    margin-top: 2rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-light);
    margin: 0;
}

.cta-sticky-trigger {
    padding: 4rem 5%;
    background: var(--dark-bg);
}

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

.cta-final h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

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

.sticky-cta.show {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.footer-asymmetric {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.about-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    margin-bottom: 1.5rem;
}

.about-story {
    padding: 5rem 5%;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    align-items: center;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.member-photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h3 {
    margin-bottom: 0.3rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-section {
    padding: 5rem 5%;
}

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

.philosophy-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.experience-numbers {
    padding: 5rem 5%;
    background: var(--dark-bg);
    color: var(--white);
}

.experience-numbers h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

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

.number-item {
    flex: 1 1 200px;
    text-align: center;
}

.big-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.number-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.cta-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-about-content h2 {
    margin-bottom: 1rem;
}

.services-hero {
    padding: 4rem 5%;
    text-align: center;
    background: var(--light-bg);
}

.services-intro {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-detailed {
    padding: 3rem 5%;
}

.service-block {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-offset-left .service-visual {
    flex: 1;
}

.service-offset-left .service-content {
    flex: 1.3;
}

.service-offset-right {
    flex-direction: row-reverse;
}

.service-offset-right .service-visual {
    flex: 1;
}

.service-offset-right .service-content {
    flex: 1.3;
}

.service-visual img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-list {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-duration,
.service-format,
.service-location {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-weight: 500;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.cta-service {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.service-form-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 5rem 5%;
}

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

.contact-details {
    flex: 1;
}

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

.contact-block h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-block a {
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.approach-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-item p {
    color: var(--text-light);
    margin: 0;
}

.faq-section {
    padding: 5rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
}

.thanks-section {
    padding: 5rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.thanks-service-info {
    display: none;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 6px;
}

.selected-service {
    font-size: 1.1rem;
    margin: 0;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.steps-list {
    margin-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--primary-color);
}

.cookies-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

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

.cookies-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-visual-right {
        margin-top: 0;
    }

    .intro-offset-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-highlight {
        margin-top: 0;
    }

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

    .card-large,
    .card-small {
        flex: 1 1 100%;
    }

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

    .split-left-visual {
        margin-right: 0;
        height: 400px;
    }

    .split-right-content {
        padding: 3rem 5%;
    }

    .story-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .team-member,
    .team-member:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .service-block,
    .service-offset-right {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-asymmetric {
        padding: 1rem 3%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-offset {
        padding: 2rem 3%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-offset {
        flex-direction: column;
    }

    .benefit-item:nth-child(odd) {
        margin-top: 0;
    }

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

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

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

    .approach-blocks {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-logo a {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .form-container-offset {
        padding: 2rem;
    }

    .big-number {
        font-size: 2.5rem;
    }
}