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

:root {
    --primary-color: #2D6A4F;
    --secondary-color: #52B788;
    --accent-color: #95D5B2;
    --dark-color: #1B4332;
    --light-bg: #F8F9FA;
    --text-dark: #212529;
    --text-light: #495057;
    --border-color: #DEE2E6;
    --white: #FFFFFF;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

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

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

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

.cookie-banner.active {
    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 {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background: var(--primary-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-color);
}

.header-asymmetric {
    position: relative;
    padding: 1rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.ad-disclosure {
    position: absolute;
    top: 0.5rem;
    right: 2rem;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.hero-content-left {
    flex: 1;
    padding-left: 3rem;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

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

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

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

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

.hero-visual-right img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: var(--light-bg);
}

.intro-asymmetric {
    background: var(--light-bg);
    padding: 5rem 2rem;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.intro-block-wide {
    flex: 2;
    padding-right: 2rem;
}

.intro-block-wide h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.intro-block-wide p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-visual-small {
    flex: 1;
    margin-left: -2rem;
}

.intro-visual-small img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: var(--border-color);
}

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

.section-title-offset {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    margin-left: 3rem;
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.service-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-bg);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 1.5rem 1.5rem 1rem;
}

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

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

.btn-select {
    margin: 0 1.5rem 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.form-section-hidden {
    display: none;
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.form-section-hidden.active {
    display: block;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-left: 15%;
}

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

.form-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

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

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

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

.form-row-offset input,
.form-row-offset textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.process-irregular {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: var(--white);
}

.title-diagonal {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
    text-align: right;
    padding-right: 3rem;
}

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

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

.item-offset-1 {
    margin-top: 0;
}

.item-offset-2 {
    margin-top: 2rem;
}

.item-offset-3 {
    margin-top: 4rem;
}

.item-offset-4 {
    margin-top: 6rem;
}

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

.process-item h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.testimonials-overlap {
    background: var(--primary-color);
    padding: 6rem 2rem;
    position: relative;
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
}

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

.testimonial-card {
    flex-basis: calc(33.333% - 1.5rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.card-float {
    transform: translateY(-0.5rem);
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.cta-diagonal {
    background: var(--light-bg);
    padding: 6rem 2rem;
    position: relative;
}

.cta-content-angled {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
}

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

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

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

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

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

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

.footer-block {
    flex: 1;
}

.block-offset-1 {
    margin-top: 0;
}

.block-offset-2 {
    margin-top: 1rem;
}

.block-offset-3 {
    margin-top: 2rem;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 1rem;
}

.footer-block p {
    color: var(--accent-color);
    line-height: 1.8;
}

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

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

.footer-block ul li a {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: var(--accent-color);
}

.about-hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 6rem;
}

.about-content-irregular {
    max-width: 800px;
}

.about-content-irregular h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.story-visual-left {
    flex: 1;
}

.story-visual-left img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: var(--light-bg);
}

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

.story-content-right h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.story-content-right p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.section-title-diagonal {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: right;
    padding-right: 3rem;
}

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

.value-card {
    flex-basis: calc(33.333% - 1.5rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.card-position-3 {
    transform: translateY(0);
}

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

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

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

.team-intro {
    max-width: 600px;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-image-offset {
    margin-left: 10%;
}

.team-image-offset img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: var(--light-bg);
}

.approach-diagonal {
    background: var(--primary-color);
    padding: 6rem 2rem;
}

.approach-content-angled {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
    padding-right: 4rem;
}

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

.approach-content-angled p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-offset h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

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

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

.services-hero-diagonal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 5rem;
}

.services-hero-diagonal h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

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

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

.block-left {
    flex-direction: row;
}

.block-right {
    flex-direction: row-reverse;
}

.block-full {
    justify-content: center;
}

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

.service-detail-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: var(--light-bg);
}

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

.service-detail-content-centered {
    text-align: center;
    max-width: 800px;
}

.service-detail-content h2,
.service-detail-content-centered h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p,
.service-detail-content-centered p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    color: var(--text-light);
}

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

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

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

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

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

.contact-hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 5rem;
}

.contact-hero-offset h1 {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.3rem;
    color: var(--text-light);
}

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

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

.info-section {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.section-offset-1 {
    margin-left: 0;
}

.section-offset-2 {
    margin-left: 2rem;
}

.section-offset-3 {
    margin-left: 4rem;
}

.info-section h2 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.info-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-email {
    font-weight: 600;
    color: var(--primary-color);
}

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

.contact-visual-offset {
    flex: 1;
    margin-top: -2rem;
}

.contact-visual-offset img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: var(--light-bg);
}

.contact-approach {
    background: var(--primary-color);
    padding: 6rem 2rem;
}

.approach-content-diagonal {
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

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

.approach-content-diagonal p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-contact-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-contact-offset h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.thanks-section-centered {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content-offset {
    max-width: 800px;
    text-align: center;
}

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

.thanks-content-offset h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.thanks-details {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    color: var(--text-dark);
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
    list-style-position: inside;
}

.steps-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

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

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

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-content ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .hero-offset,
    .intro-asymmetric,
    .story-asymmetric,
    .contact-content-asymmetric {
        flex-direction: column;
    }

    .services-grid-irregular .service-card {
        flex-basis: 100%;
    }

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

    .testimonial-card {
        flex-basis: 100%;
    }

    .process-item {
        flex-basis: 100%;
    }

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

    .values-grid-irregular .value-card {
        flex-basis: 100%;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}