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

:root {
    --primary-color: #2c5530;
    --secondary-color: #4a7850;
    --accent-color: #8ba888;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-asymmetric {
    position: relative;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

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

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    width: 45%;
    padding: 80px 0 80px 80px;
}

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

.hero-text-block h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.hero-text-block p {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 35px;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 80px;
    width: 58%;
    height: calc(100% - 80px);
    background-color: var(--accent-color);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.intro-scattered {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.intro-block-left {
    width: 55%;
}

.intro-block-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.intro-visual-right {
    width: 45%;
    position: relative;
}

.visual-accent {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 8px;
    margin-bottom: 30px;
}

.highlight-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

.services-irregular {
    background-color: var(--bg-light);
    padding: 100px 40px 120px;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 70px;
    padding-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.services-header-offset p {
    font-size: 19px;
    color: var(--text-light);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow);
}

.card-large {
    width: calc(60% - 15px);
}

.card-medium {
    width: calc(40% - 15px);
}

.card-small {
    width: calc(33.333% - 20px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px;
}

.form-container-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    width: 40%;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-form {
    width: 60%;
    background-color: var(--bg-light);
    padding: 45px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.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(--bg-white);
    border: none;
    padding: 16px 42px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-diagonal {
    background-color: var(--bg-light);
    padding: 100px 80px;
}

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

.trust-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 80px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px var(--shadow);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-cookie-accept:hover {
    opacity: 0.9;
}

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

.btn-cookie-reject:hover {
    opacity: 0.8;
}

.about-hero-split {
    display: flex;
    min-height: 600px;
}

.about-image-side {
    width: 45%;
    background-color: var(--accent-color);
}

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

.about-text-side {
    width: 55%;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text-side h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.about-text-side p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-section {
    background-color: var(--bg-light);
    padding: 100px 80px;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-container h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.philosophy-grid {
    display: flex;
    gap: 50px;
}

.philosophy-block {
    flex: 1;
}

.philosophy-block h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.experience-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-content {
    width: 65%;
}

.experience-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.experience-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.experience-visual {
    width: 35%;
}

.visual-accent-secondary {
    width: 100%;
    height: 320px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 8px;
}

.values-scattered {
    background-color: var(--bg-light);
    padding: 100px 80px;
}

.values-scattered h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-dark);
    text-align: center;
}

.values-items {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.value-item {
    flex: 1;
}

.value-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-about {
    padding: 100px 80px;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-content-centered p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.services-header-full {
    background-color: var(--bg-light);
    padding: 80px 80px 60px;
    text-align: center;
}

.services-header-full h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.services-header-full p {
    font-size: 18px;
    color: var(--text-light);
}

.services-detail-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    width: 45%;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-detail-content {
    width: 55%;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 22px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

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

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

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

.pricing-info {
    background-color: var(--bg-light);
    padding: 60px 80px;
}

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

.pricing-info-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-info-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-info-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.pricing-info-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cta-services {
    padding: 80px 80px;
    text-align: center;
}

.cta-services h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-services p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.contact-header {
    background-color: var(--bg-light);
    padding: 80px 80px 40px;
    text-align: center;
}

.contact-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-main-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    width: 50%;
}

.contact-info-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-visual-side {
    width: 50%;
}

.contact-map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.contact-note-section {
    background-color: var(--bg-light);
    padding: 60px 80px;
}

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

.contact-note-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-note-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.contact-note-content a:hover {
    color: var(--secondary-color);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 17px;
    color: var(--text-dark);
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.thanks-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-back-home,
.btn-view-services {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

.btn-view-services:hover {
    background-color: var(--bg-light);
}

.legal-page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-page-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-page-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-page-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-page-content ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-page-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.legal-page-content a:hover {
    color: var(--secondary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px 14px;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

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

    .intro-scattered {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-block-left,
    .intro-visual-right {
        width: 100%;
    }

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

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

    .form-container-asymmetric {
        flex-direction: column;
    }

    .form-intro,
    .contact-form {
        width: 100%;
    }

    .trust-points {
        flex-direction: column;
        gap: 30px;
    }

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

    .about-image-side,
    .about-text-side {
        width: 100%;
    }

    .philosophy-grid {
        flex-direction: column;
    }

    .experience-offset {
        flex-direction: column;
    }

    .experience-content,
    .experience-visual {
        width: 100%;
    }

    .values-items {
        flex-direction: column;
    }

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

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

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .contact-main-section {
        flex-direction: column;
    }

    .contact-info-block,
    .contact-visual-side {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 40px;
    }

    .intro-block-left h2 {
        font-size: 32px;
    }

    .services-header-offset {
        padding-left: 40px;
    }

    .services-header-offset h2 {
        font-size: 36px;
    }

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

    .btn-back-home,
    .btn-view-services {
        width: 100%;
        text-align: center;
    }
}