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

:root {
    --primary-color: #2a5d3f;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #8b6f47;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

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

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

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 5%;
    overflow: hidden;
}

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateX(8%);
}

.hero-asymmetric h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

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

.cta-hero:hover {
    background-color: #1e4429;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 93, 63, 0.3);
}

.hero-visual-overlap {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.intro-offset {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background-color: var(--bg-light);
}

.intro-narrow {
    flex: 2;
    padding-left: 12%;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.intro-stat-card {
    flex: 1;
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-40px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

.services-asymmetric {
    padding: 6rem 5%;
    background-color: white;
}

.section-header-left {
    margin-bottom: 3rem;
    max-width: 600px;
}

.section-header-left h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-left p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

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

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

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

.btn-select-service:hover {
    background-color: #1e4429;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 93, 63, 0.3);
}

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

.card-offset-up {
    flex: 1 1 calc(33.333% - 1rem);
    transform: translateY(-30px);
}

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

.card-offset-down {
    flex: 1 1 calc(33.333% - 1rem);
    transform: translateY(30px);
}

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

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

.why-us-irregular {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.why-content-stack {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.why-image-left {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--border-color);
}

.why-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-text-overlap {
    flex: 1;
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-60px);
}

.why-text-overlap h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-text-overlap p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-form-section {
    padding: 6rem 5%;
    background-color: white;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transform: rotate(-0.5deg);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--primary-color);
}

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

.btn-submit:hover {
    background-color: #1e4429;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 93, 63, 0.3);
}

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

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

.disclaimer-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

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

.footer-main {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col-wide {
    flex: 1.5;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

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

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    color: white;
    padding: 1.5rem 5%;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.page-hero-minimal {
    margin-top: 80px;
    padding: 4rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-minimal h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.about-story-offset {
    padding: 5rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.story-image-right img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.story-text-left h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text-left p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.values-irregular h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

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

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.card-up {
    flex: 1 1 calc(50% - 1rem);
    transform: translateY(-20px);
}

.card-down {
    flex: 1 1 calc(50% - 1rem);
    transform: translateY(20px);
}

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

.card-wide {
    flex: 1 1 100%;
}

.team-section {
    padding: 5rem 5%;
    background-color: white;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section-bottom {
    padding: 5rem 5%;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-section-bottom h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-section-bottom p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

.btn-cta-large:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.service-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-page-layout {
    padding: 4rem 5%;
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-info {
    text-align: center;
    max-width: 400px;
}

.map-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-additional h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-additional p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.thanks-page-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5%;
    margin-top: 80px;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.thanks-info {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-next-steps {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

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

.thanks-next-steps ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
}

.thanks-next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.legal-page {
    margin-top: 80px;
    padding: 4rem 5%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

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

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

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-disclosure {
        order: 3;
        width: 100%;
        text-align: left;
    }

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

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

    .hero-text-offset {
        transform: none;
        max-width: 100%;
    }

    .hero-visual-overlap {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .intro-offset,
    .about-story-offset,
    .why-content-stack,
    .contact-page-layout,
    .service-detail-item {
        flex-direction: column;
    }

    .why-text-overlap {
        transform: none;
    }

    .services-grid-irregular,
    .values-grid-offset,
    .team-layout-asymmetric {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .team-member {
        flex: 1 1 100%;
        transform: none !important;
    }

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