/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #fafafa;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d5f3f;
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

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

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

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

.cookie-content a {
    color: #a8d5ba;
    text-decoration: underline;
}

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

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

.btn-cookie {
    background: #fff;
    color: #2d5f3f;
}

.btn-cookie:hover {
    background: #f0f0f0;
}

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

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

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    letter-spacing: -0.5px;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5f3f;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-menu.show {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* Magazine Layout Containers */
.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Hero Magazine Style */
.hero-magazine {
    padding: 4rem 2rem;
    background: #fff;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text-column {
    flex: 1;
    min-width: 400px;
}

.hero-text-column h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Three Column Layout */
.intro-columns {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.three-col-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.col-narrow {
    flex: 0 0 350px;
}

.col-wide {
    flex: 1;
}

.col-narrow h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.col-wide p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

/* Visual Break - Image Grid */
.visual-break {
    padding: 0;
}

.image-grid-magazine {
    display: flex;
    height: 500px;
}

.grid-item-large {
    flex: 2;
}

.grid-item-small {
    flex: 1;
}

.grid-item-large img,
.grid-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.services-highlight {
    padding: 6rem 2rem;
    background: #fff;
}

.section-header-offset {
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    max-width: 700px;
}

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

.service-card-magazine {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
    padding: 2.5rem;
    background: #fafafa;
    border-left: 4px solid #2d5f3f;
    transition: all 0.3s ease;
}

.service-card-magazine:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.service-number {
    font-size: 0.9rem;
    color: #2d5f3f;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-magazine h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-magazine p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.service-select {
    padding: 0.8rem 1.8rem;
    background: #2d5f3f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #234a32;
}

.cta-inline-magazine {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: #2d5f3f;
    color: #fff;
    border-radius: 8px;
}

.cta-inline-magazine p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

/* CTAs */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2d5f3f;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-large:hover {
    background: #234a32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45,95,63,0.3);
}

.cta-secondary {
    background: #fff;
    color: #2d5f3f;
    border: 2px solid #fff;
}

.cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-text {
    color: #2d5f3f;
    margin-left: 2rem;
    text-decoration: underline;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.philosophy-text {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
    text-align: center;
}

/* Testimonials */
.testimonials-magazine {
    padding: 5rem 2rem;
    background: #fff;
}

.section-title-center {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
    font-style: italic;
}

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

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #2d5f3f;
}

/* Approach Section */
.approach-visual {
    padding: 5rem 0;
    background: #fafafa;
}

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

.approach-image {
    flex: 1;
}

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

.approach-content {
    flex: 1;
    padding: 4rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.step strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d5f3f;
}

.step p {
    color: #555;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: #fff;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2d5f3f;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234a32;
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background: #2d5f3f;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.final-cta .cta-large {
    background: #fff;
    color: #2d5f3f;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #aaa;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

/* Page Hero */
.page-hero {
    padding: 5rem 2rem 3rem;
    background: #f5f5f5;
    text-align: center;
}

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

.lead-text {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: #fafafa;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

/* Team Section */
.team-section {
    padding: 5rem 2rem;
    background: #fff;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.team-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.team-member {
    flex: 1 1 calc(25% - 2rem);
    min-width: 250px;
    text-align: center;
}

.member-photo {
    margin-bottom: 1rem;
}

.member-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #555;
    font-size: 0.95rem;
}

/* Numbers Section */
.numbers-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.numbers-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

.number {
    font-size: 3rem;
    font-weight: 800;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

.number-item p {
    color: #555;
}

/* Approach Detailed */
.approach-detailed {
    padding: 5rem 2rem;
    background: #fff;
}

.approach-detailed h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.approach-col {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
}

.approach-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: #2d5f3f;
    color: #fff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-about .cta-primary {
    background: #fff;
    color: #2d5f3f;
}

/* Services Detail */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    margin-bottom: 5rem;
}

.service-detail-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #2d5f3f;
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2d5f3f;
}

.service-includes {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
}

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-pricing-detail {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666;
    font-size: 0.95rem;
}

.pricing-note-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.pricing-note-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-note-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

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

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-services .cta-primary {
    background: #fff;
    color: #2d5f3f;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d5f3f;
}

.info-item a {
    color: #2d5f3f;
    text-decoration: underline;
}

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

.contact-map-placeholder {
    flex: 1;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45,95,63,0.9);
    color: #fff;
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
}

.contact-cta-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 350px;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

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

/* Thanks Page */
.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
}

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

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

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

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

.thanks-message {
    margin-bottom: 3rem;
}

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

.thanks-next-steps {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 1rem;
    color: #555;
}

.thanks-contact-info {
    background: #fff;
    border: 2px solid #2d5f3f;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.thanks-contact-info a {
    color: #2d5f3f;
    text-decoration: underline;
}

.thanks-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
}

.legal-update {
    color: #777;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-content a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-content strong {
    color: #1a1a1a;
}

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

.gdpr-table th,
.cookies-table th {
    background: #2d5f3f;
    color: #fff;
    padding: 1rem;
    text-align: left;
}

.gdpr-table td,
.cookies-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #ddd;
}

.gdpr-table tr:hover,
.cookies-table tr:hover {
    background: #f5f5f5;
}

.btn-reset-cookies {
    padding: 0.8rem 1.5rem;
    background: #2d5f3f;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.btn-reset-cookies:hover {
    background: #234a32;
}

.legal-footer-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ddd;
    font-style: italic;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-text-column {
        min-width: auto;
    }

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

    .three-col-layout {
        flex-direction: column;
    }

    .col-narrow {
        flex: 1;
    }

    .image-grid-magazine {
        flex-direction: column;
        height: auto;
    }

    .grid-item-large,
    .grid-item-small {
        height: 300px;
    }

    .service-card-magazine {
        min-width: 100%;
    }

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

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

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

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

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

    .team-member {
        flex: 1 1 100%;
    }

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

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

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

    .faq-item {
        flex: 1 1 100%;
        min-width: 100%;
    }

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

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

    .page-hero h1 {
        font-size: 2rem;
    }
}

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

    .section-header-offset h2 {
        font-size: 2rem;
    }

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