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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.header-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a5934;
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

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

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2a5934;
}

.ad-notice {
    flex: 0 0 auto;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.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 1 400px;
    margin: 0;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2a5934;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1f4327;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-image-side {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
}

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

.hero-content-side {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.hero-content-side h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2a5934;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2a5934;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f4327;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 89, 52, 0.3);
}

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

.intro-text-block {
    flex: 1 1 55%;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2a5934;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-visual-block {
    flex: 1 1 45%;
    position: relative;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cards {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2a5934;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #666;
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

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

.card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2a5934;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background-color: #2a5934;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #1f4327;
}

.contact-form-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.form-intro-side {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2a5934;
    line-height: 1.3;
}

.form-intro-side p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trust-icon {
    width: 28px;
    height: 28px;
    background-color: #2a5934;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-side {
    flex: 1 1 55%;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    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: #2a5934;
}

.btn-submit {
    padding: 1rem;
    background-color: #2a5934;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #1f4327;
}

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

.values-content-side {
    flex: 1 1 50%;
}

.values-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2a5934;
}

.values-content-side p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-image-side {
    flex: 1 1 50%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef9e7;
}

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

.disclaimer-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.footer-modern {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

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

.page-hero-minimal {
    padding: 5rem 2rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 3rem;
    color: #2a5934;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.2rem;
    color: #666;
}

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

.story-text-block {
    flex: 1 1 55%;
}

.story-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2a5934;
}

.story-text-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-visual-block {
    flex: 1 1 45%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-grid {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.section-header-left h2 {
    font-size: 2.8rem;
    color: #2a5934;
    margin-bottom: 1rem;
}

.section-header-left p {
    font-size: 1.15rem;
    color: #666;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

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

.expertise-visual {
    position: relative;
    height: 600px;
    margin: 4rem 0;
}

.expertise-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.expertise-overlay-text {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
    background-color: rgba(42, 89, 52, 0.85);
    border-radius: 8px;
}

.expertise-overlay-text h2 {
    font-size: 2rem;
    line-height: 1.4;
}

.team-approach {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.approach-content h2 {
    font-size: 2.8rem;
    color: #2a5934;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-content > p {
    font-size: 1.15rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
}

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

.process-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a5934;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #2a5934;
    text-align: center;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2a5934;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2a5934;
}

.service-detail-image {
    flex: 1 1 45%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.contact-details-block {
    flex: 1 1 50%;
}

.contact-details-block h2 {
    font-size: 2.5rem;
    color: #2a5934;
    margin-bottom: 2rem;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-image-block {
    flex: 1 1 50%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.3rem;
    color: #2a5934;
    margin-bottom: 1.5rem;
}

.info-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-hero {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2a5934;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.selected-service-info {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2a5934;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1f4327;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2a5934;
    border: 2px solid #2a5934;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2a5934;
    color: #ffffff;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

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

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-marker {
    width: 50px;
    height: 50px;
    background-color: #2a5934;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2a5934;
    margin-bottom: 0.8rem;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2a5934;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

.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: #f8f9fa;
    font-weight: 600;
    color: #2a5934;
}

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

    .hero-image-side,
    .hero-content-side {
        flex: 1 1 100%;
    }

    .hero-content-side {
        padding: 3rem 2rem;
    }

    .hero-content-side h1 {
        font-size: 2.5rem;
    }

    .intro-offset,
    .about-story-split,
    .values-split,
    .contact-info-layout,
    .form-wrapper-split,
    .service-detail-item {
        flex-direction: column;
    }

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

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .section-header-center h2,
    .values-content-side h2,
    .story-text-block h2 {
        font-size: 2rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
    }
}