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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e35;
    background-color: #fafbfa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 53, 0.97);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #6b8e6f;
    color: #ffffff;
}

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

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

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

.header-asymmetric {
    background-color: #ffffff;
    padding: 0.5rem 0 0 0;
    border-bottom: 1px solid #e8ebe9;
}

.ad-disclosure {
    background-color: #f4f6f5;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.8rem;
    color: #5f6d64;
    border-bottom: 1px solid #e0e4e2;
}

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

.logo-area {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e35;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #4a5d52;
    font-size: 0.98rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b8e6f;
}

.hero-asymmetric {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 5rem;
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 5%;
    width: 58%;
    height: 85%;
    overflow: hidden;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 4rem 2rem 4rem 8%;
    background-color: #fafbfa;
}

.hero-text-offset h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #2c3e35;
    font-weight: 700;
}

.hero-text-offset p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4a5d52;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6b8e6f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #5a7a5e;
    transform: translateY(-2px);
}

.intro-irregular {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.text-block-left {
    flex: 1;
    padding-right: 2rem;
}

.text-block-left h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e35;
}

.text-block-left p {
    font-size: 1.1rem;
    color: #4a5d52;
    line-height: 1.7;
}

.visual-block-right {
    flex: 0 0 45%;
    height: 420px;
    overflow: hidden;
    transform: translateY(-3rem);
}

.visual-block-right img {
    width: 100%;
    height: 100%;
}

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

.section-title-offset {
    max-width: 600px;
    margin-bottom: 3.5rem;
    margin-left: 8%;
}

.section-title-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.section-title-offset p {
    font-size: 1.1rem;
    color: #4a5d52;
}

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

.service-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.card-large {
    flex: 1 1 calc(58% - 1rem);
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
}

.card-small {
    flex: 1 1 calc(38% - 1rem);
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.service-content p {
    font-size: 1rem;
    color: #4a5d52;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b8e6f;
    margin-top: 1.5rem;
}

.form-section-overlap {
    background: linear-gradient(135deg, #7a9e7e 0%, #6b8e6f 100%);
    padding: 5rem 2rem;
    margin-bottom: 6rem;
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    transform: rotate(-1deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.form-header p {
    font-size: 1rem;
    color: #4a5d52;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e35;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    padding: 1.1rem 2rem;
    background-color: #6b8e6f;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #5a7a5e;
    transform: translateY(-2px);
}

.values-offset {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    gap: 3rem;
    align-items: flex-start;
}

.values-content {
    flex: 1;
    padding-top: 3rem;
}

.values-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #2c3e35;
}

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

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e35;
}

.value-item p {
    font-size: 1rem;
    color: #4a5d52;
    line-height: 1.7;
}

.values-visual {
    flex: 0 0 48%;
    height: 550px;
    overflow: hidden;
    transform: translateY(-5rem);
}

.values-visual img {
    width: 100%;
    height: 100%;
}

.disclaimer-section {
    background-color: #f4f6f5;
    padding: 2.5rem;
    margin: 4rem 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #5f6d64;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.footer-asymmetric {
    background-color: #2c3e35;
    color: #c4d3c9;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #c4d3c9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

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

.about-hero-offset {
    max-width: 1400px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-primary {
    flex: 1;
}

.about-text-primary h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e35;
}

.about-text-primary p {
    font-size: 1.2rem;
    color: #4a5d52;
    line-height: 1.7;
}

.about-image-stack {
    flex: 0 0 45%;
    height: 480px;
    overflow: hidden;
    transform: rotate(2deg);
}

.about-image-stack img {
    width: 100%;
    height: 100%;
}

.story-irregular {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.story-block {
    flex: 1;
    padding-right: 2rem;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e35;
}

.story-block p {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.story-visual-overlap {
    flex: 0 0 42%;
    height: 520px;
    overflow: hidden;
    transform: translateY(3rem);
}

.story-visual-overlap img {
    width: 100%;
    height: 100%;
}

.team-staggered {
    max-width: 1100px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
}

.team-staggered h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: #2c3e35;
    text-align: center;
}

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

.team-member {
    background-color: #ffffff;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

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

.member-medium {
    flex: 1 1 calc(55% - 1rem);
}

.member-small {
    flex: 1 1 calc(42% - 1rem);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.team-member p {
    font-size: 1rem;
    color: #4a5d52;
    line-height: 1.7;
}

.approach-asymmetric {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.8rem;
    color: #2c3e35;
}

.approach-content p {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-image-offset {
    flex: 0 0 40%;
    height: 450px;
    overflow: hidden;
    transform: translateY(-2rem) rotate(-1deg);
}

.approach-image-offset img {
    width: 100%;
    height: 100%;
}

.numbers-overlap {
    background: linear-gradient(to right, #6b8e6f, #7a9e7e);
    padding: 4rem 2rem;
    margin-bottom: 6rem;
}

.numbers-overlap h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #e8f0e9;
}

.cta-about-offset {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background-color: #f4f6f5;
    text-align: center;
    transform: rotate(-0.5deg);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.cta-content p {
    font-size: 1.1rem;
    color: #4a5d52;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 2px solid #6b8e6f;
    color: #6b8e6f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #6b8e6f;
    color: #ffffff;
}

.services-hero-irregular {
    max-width: 1100px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.services-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e35;
}

.services-intro p {
    font-size: 1.15rem;
    color: #4a5d52;
    line-height: 1.7;
    max-width: 800px;
}

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

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

.service-offset-left {
    flex-direction: row;
}

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

.service-detail-visual {
    flex: 0 0 45%;
    height: 400px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #2c3e35;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.8rem 0 1rem;
    color: #2c3e35;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5d52;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.service-detail-content ul li {
    font-size: 1rem;
    color: #4a5d52;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b8e6f;
    margin: 1.5rem 0;
}

.cta-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #6b8e6f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-service:hover {
    background-color: #5a7a5e;
    transform: translateY(-2px);
}

.services-cta-overlap {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.cta-box {
    background-color: #f4f6f5;
    padding: 3.5rem;
    text-align: center;
    transform: rotate(0.5deg);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.cta-box p {
    font-size: 1.1rem;
    color: #4a5d52;
    margin-bottom: 2rem;
}

.contact-hero-asymmetric {
    max-width: 900px;
    margin: 3rem auto 4rem;
    padding: 0 2rem;
}

.contact-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: #2c3e35;
}

.contact-intro p {
    font-size: 1.15rem;
    color: #4a5d52;
    line-height: 1.7;
}

.contact-layout-irregular {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e35;
}

.info-item p {
    font-size: 1.05rem;
    color: #4a5d52;
    line-height: 1.7;
}

.note {
    font-size: 0.95rem;
    color: #6f7d75;
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-visual-offset {
    flex: 0 0 40%;
    height: 500px;
    overflow: hidden;
    transform: rotate(-2deg);
}

.contact-visual-offset img {
    width: 100%;
    height: 100%;
}

.visit-info-overlap {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 2.5rem;
    background-color: #f4f6f5;
}

.visit-info-overlap h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.visit-info-overlap p {
    font-size: 1.05rem;
    color: #4a5d52;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-staggered {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.faq-staggered h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #2c3e35;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(48% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
    font-size: 1rem;
    color: #4a5d52;
    line-height: 1.7;
}

.thanks-container {
    max-width: 1400px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e35;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #4a5d52;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #6b8e6f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 2px solid #6b8e6f;
    color: #6b8e6f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #6b8e6f;
    color: #ffffff;
}

.thanks-visual {
    flex: 0 0 40%;
    height: 400px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.next-steps {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.next-steps h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #2c3e35;
    text-align: center;
}

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

.step-item {
    flex: 1;
    background-color: #f4f6f5;
    padding: 2.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.step-item p {
    font-size: 1rem;
    color: #4a5d52;
    line-height: 1.7;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e35;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e35;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.8rem 0 0.8rem;
    color: #2c3e35;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5d52;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #4a5d52;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content strong {
    color: #2c3e35;
    font-weight: 600;
}

.legal-content span {
    color: #6b8e6f;
}

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

    .hero-image-block {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .hero-text-offset {
        max-width: 100%;
        padding: 3rem 2rem;
    }

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

    .intro-irregular,
    .values-offset,
    .story-irregular,
    .approach-asymmetric,
    .contact-layout-irregular {
        flex-direction: column;
    }

    .visual-block-right,
    .values-visual,
    .story-visual-overlap,
    .approach-image-offset,
    .contact-visual-offset {
        flex: 1;
        width: 100%;
        transform: none;
    }

    .service-grid-asymmetric {
        flex-direction: column;
    }

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

    .service-detail {
        flex-direction: column;
    }

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

    .service-detail-visual {
        width: 100%;
        flex: 1;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .steps-grid,
    .faq-grid {
        flex-direction: column;
    }

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

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

    .thanks-visual {
        width: 100%;
        flex: 1;
    }

    .about-hero-offset {
        flex-direction: column;
    }

    .about-image-stack {
        width: 100%;
        flex: 1;
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .nav-offset {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

    .form-container {
        transform: none;
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}