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

:root {
    --primary-color: #2D5F3F;
    --secondary-color: #8B6F47;
    --accent-color: #C89B6D;
    --dark: #1A1A1A;
    --light: #F8F6F3;
    --gray: #666666;
    --white: #FFFFFF;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 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-color: rgba(26, 26, 26, 0.95);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

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

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #234a32;
}

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

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

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 90%;
}

.nav-brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    color: var(--dark);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    padding: 8rem 0 4rem;
}

.hero-offset-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.cta-floating {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(45, 95, 63, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.cta-floating:hover {
    background-color: #234a32;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 95, 63, 0.4);
}

.intro-offset {
    padding: 6rem 5%;
    background-color: var(--light);
}

.intro-narrow {
    max-width: 800px;
    margin: 0 0 0 10%;
}

.intro-narrow h2 {
    margin-bottom: 2rem;
}

.visual-break {
    padding: 8rem 5%;
    background-color: var(--white);
}

.overlap-cards {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.card-image {
    flex: 1;
}

.card-offset-1 {
    transform: translateY(-3rem);
}

.card-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-text {
    flex: 1;
    padding: 3rem;
    background-color: var(--light);
    border-radius: 8px;
}

.card-offset-2 {
    transform: translateY(2rem);
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.services-preview-asymmetric {
    padding: 8rem 5%;
    background-color: var(--dark);
    color: var(--white);
}

.services-intro-side {
    max-width: 500px;
    margin-bottom: 4rem;
}

.eyebrow {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.services-grid-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:nth-child(2) {
    transform: translateY(2rem);
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-0.5rem);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.cta-services-bottom {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.testimonial-offset {
    display: flex;
    gap: 4rem;
    padding: 8rem 5%;
    background-color: var(--light);
    align-items: center;
}

.testimonial-block {
    flex: 1.5;
    transform: translateX(3rem);
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-style: normal;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-image-aside {
    flex: 1;
}

.testimonial-image-aside img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.why-us-irregular {
    display: flex;
    gap: 5rem;
    padding: 8rem 5%;
    background-color: var(--white);
}

.why-text-left {
    flex: 1;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.why-item strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.why-visual-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stack {
    position: relative;
}

.visual-stack img {
    border-radius: 8px;
}

.stat-overlay {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.process-section {
    padding: 8rem 5%;
    background-color: var(--light);
}

.process-header-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.process-steps-staggered {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step:nth-child(even) {
    transform: translateY(2rem);
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.cta-band-offset {
    padding: 8rem 5%;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-content-irregular {
    max-width: 700px;
    margin-left: 10%;
    text-align: left;
}

.cta-content-irregular h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content-irregular p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 8rem 5%;
    background-color: var(--white);
}

.form-container-offset {
    max-width: 800px;
    margin: 0 0 0 10%;
}

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

.event-form {
    background-color: var(--light);
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    font-family: Georgia, serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #234a32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.final-testimonials {
    display: flex;
    gap: 3rem;
    padding: 6rem 5%;
    background-color: var(--light);
}

.testimonial-mini {
    flex: 1;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-mini p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-mini cite {
    font-style: normal;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.footer-asymmetric {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.page-hero-offset {
    padding: 12rem 5% 6rem;
    background-color: var(--light);
}

.page-hero-text {
    max-width: 800px;
    margin-left: 10%;
}

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

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: center;
}

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

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

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

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

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

.service-includes h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-services-page {
    padding: 6rem 5%;
    background-color: var(--light);
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-split {
    display: flex;
    min-height: 80vh;
    padding-top: 8rem;
}

.about-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5% 0 10%;
}

.about-hero-visual {
    flex: 1;
}

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

.about-story {
    padding: 8rem 5%;
    background-color: var(--light);
}

.story-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-offset {
    display: flex;
    gap: 4rem;
    padding: 8rem 5%;
    background-color: var(--white);
}

.philosophy-block-left {
    flex: 1;
    max-width: 500px;
}

.philosophy-points-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.philosophy-item {
    padding: 2rem;
    background-color: var(--light);
    border-radius: 8px;
}

.philosophy-item:nth-child(2) {
    margin-left: 3rem;
}

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

.team-intro-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member:nth-child(2),
.team-member:nth-child(4) {
    transform: translateY(2rem);
}

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

.member-photo img {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-role {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.values-irregular {
    padding: 8rem 5%;
    background-color: var(--white);
}

.values-header {
    max-width: 600px;
    margin: 0 0 4rem 10%;
}

.values-blocks-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--light);
    border-radius: 8px;
}

.value-block:nth-child(odd) {
    transform: translateY(1.5rem);
}

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

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

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

.number-big {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.number-label {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-about-page {
    padding: 8rem 5%;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-hero {
    padding: 12rem 5% 6rem;
    background-color: var(--light);
}

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

.contact-info-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

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

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

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

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

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

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

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

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

.approach-content > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
}

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

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

.step-icon {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.contact-faq-offset {
    padding: 8rem 5%;
    background-color: var(--white);
}

.faq-header {
    max-width: 800px;
    margin: 0 0 4rem 10%;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #E0E0E0;
}

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

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

.contact-cta-final {
    padding: 6rem 5%;
    background-color: var(--light);
}

.cta-box-irregular {
    max-width: 700px;
    margin-left: 10%;
    text-align: left;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 5% 6rem;
    background-color: var(--light);
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--gray);
}

.thanks-submessage {
    font-size: 1rem;
    color: var(--gray);
}

.thanks-next-steps {
    padding: 6rem 5%;
    background-color: var(--white);
}

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

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

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

.step-box {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: var(--light);
    border-radius: 8px;
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thanks-explore {
    padding: 6rem 5%;
    background-color: var(--light);
}

.explore-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.explore-links {
    display: flex;
    gap: 2rem;
}

.explore-card {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

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

.explore-card h3 {
    color: var(--primary-color);
}

.explore-card .arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--accent-color);
}

.legal-page {
    padding: 12rem 5% 6rem;
    background-color: var(--white);
}

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

.legal-update {
    color: var(--gray);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-table th {
    background-color: var(--light);
    font-weight: 700;
}

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

    h2 {
        font-size: 2rem;
    }

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

    .hero-image-right img {
        clip-path: none;
        min-height: 400px;
    }

    .hero-text-block h1 {
        font-size: 3rem;
    }

    .overlap-cards,
    .service-detail-block,
    .testimonial-offset,
    .why-us-irregular,
    .philosophy-offset,
    .contact-info-grid {
        flex-direction: column;
    }

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

    .card-offset-1,
    .card-offset-2 {
        transform: none;
    }

    .testimonial-block {
        transform: none;
    }

    .process-steps-staggered,
    .approach-steps {
        flex-direction: column;
    }

    .step:nth-child(even),
    .team-member:nth-child(2),
    .team-member:nth-child(4) {
        transform: none;
    }

    .cta-floating {
        bottom: 2rem;
        right: 2rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .intro-narrow,
    .values-header,
    .faq-header,
    .cta-box-irregular,
    .form-container-offset,
    .cta-content-irregular {
        margin-left: 0;
    }

    .about-hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .about-hero-text {
        padding: 4rem 5%;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem;
        gap: 1rem;
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
    }

    .nav-menu {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-text-block h1 {
        font-size: 2.25rem;
    }

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

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

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

    .services-grid-offset,
    .final-testimonials,
    .footer-links,
    .numbers-grid {
        flex-direction: column;
    }

    .service-card:nth-child(2) {
        transform: none;
    }

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

    .value-block:nth-child(odd) {
        transform: none;
    }

    .philosophy-item:nth-child(2) {
        margin-left: 0;
    }

    section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-asymmetric {
        padding-top: 6rem;
    }

    .page-hero-offset,
    .contact-hero,
    .thanks-hero {
        padding-top: 8rem;
    }

    .cookie-table {
        font-size: 0.875rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}
