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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background: #5a8f4f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #4a7a3f;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.ad-notice {
    font-size: 12px;
    color: #666666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5a8f4f;
}

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

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: #fafafa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: #5a8f4f;
    color: #ffffff;
}

.cta-primary:hover {
    background: #4a7a3f;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.cta-secondary:hover {
    background: #2c2c2c;
    color: #ffffff;
}

.split-container {
    display: flex;
    min-height: 500px;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.split-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.split-image {
    position: relative;
    overflow: hidden;
}

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

.story-section,
.insight-section,
.testimonial-section,
.benefits-section,
.about-header,
.about-approach,
.about-process-detail {
    margin: 0;
}

.section-header {
    text-align: center;
    padding: 80px 40px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 700;
}

.process-section {
    padding: 80px 40px;
    background: #f9f9f9;
}

.process-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.process-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.testimonial-section blockquote {
    margin-bottom: 32px;
}

.testimonial-section blockquote p {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.testimonial-section cite {
    font-size: 16px;
    color: #666666;
    font-style: normal;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 17px;
    line-height: 1.7;
    padding: 12px 0 12px 28px;
    position: relative;
    color: #4a4a4a;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5a8f4f;
    font-weight: 700;
}

.services-preview {
    padding: 80px 40px;
    background: #ffffff;
}

.services-grid {
    display: flex;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #ffffff;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #f5f5f5;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    margin: 0 24px 24px;
    color: #ffffff;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.form-section {
    padding: 100px 40px;
    background: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 700;
}

.form-intro p {
    font-size: 17px;
    color: #555555;
}

.contact-form {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #5a8f4f;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    background: #5a8f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #4a7a3f;
    transform: translateY(-2px);
}

.final-note {
    padding: 60px 40px;
    background: #f9f9f9;
}

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

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
}

.main-footer {
    background: #2c2c2c;
    color: #e0e0e0;
    padding: 60px 40px 20px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p,
.footer-col li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444444;
    font-size: 14px;
}

.page-header {
    padding: 80px 40px 60px;
    text-align: center;
    background: #f9f9f9;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    background: #ffffff;
}

.service-full {
    border-bottom: 1px solid #e0e0e0;
}

.service-full:last-child {
    border-bottom: none;
}

.service-split {
    display: flex;
    min-height: 500px;
}

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

.service-image,
.service-content {
    flex: 1;
    min-width: 300px;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.service-features {
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    padding: 8px 0 8px 24px;
    position: relative;
    color: #555555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #5a8f4f;
    font-weight: 700;
}

.service-pricing {
    margin-top: 32px;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #5a8f4f;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

.pricing-info {
    padding: 80px 40px;
    background: #f5f5f5;
}

.info-container {
    max-width: 1100px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
    font-weight: 700;
}

.pricing-split {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.pricing-factor {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
}

.pricing-factor h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.pricing-factor p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.pricing-cta {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
}

.pricing-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.materials-header {
    padding: 80px 40px 40px;
    text-align: center;
}

.materials-header h2 {
    font-size: 38px;
    color: #2c2c2c;
    font-weight: 700;
}

.materials-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.material-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.material-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.material-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.about-materials {
    padding: 80px 0;
    background: #f9f9f9;
}

.materials-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.materials-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.process-steps {
    margin-top: 32px;
}

.step {
    margin-bottom: 32px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.about-values {
    padding: 80px 40px;
    background: #ffffff;
}

.values-content {
    max-width: 1100px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
    font-weight: 700;
}

.values-split {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

.about-cta {
    padding: 100px 40px;
    background: #f5f5f5;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

.cta-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.contact-header {
    padding: 80px 40px 40px;
    text-align: center;
    background: #f9f9f9;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 700;
}

.contact-header p {
    font-size: 18px;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    padding: 60px 0;
    background: #f9f9f9;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-image {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    padding: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 700;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-image {
    position: relative;
    overflow: hidden;
}

.contact-approach {
    padding: 80px 40px;
    background: #ffffff;
}

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

.approach-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #f9f9f9;
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.contact-faq {
    padding: 80px 40px;
    background: #f5f5f5;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 48px;
    color: #2c2c2c;
    font-weight: 700;
}

.faq-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 28px;
    background: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.contact-final {
    padding: 80px 40px;
    background: #ffffff;
}

.final-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.final-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

.final-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.email-display {
    font-size: 20px;
    font-weight: 600;
    color: #5a8f4f;
}

.thanks-section {
    padding: 100px 40px;
    background: #f9f9f9;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content {
    text-align: center;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #5a8f4f;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.thanks-details {
    margin-bottom: 40px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 4px;
}

.thanks-details p {
    font-size: 16px;
    color: #2c2c2c;
}

.thanks-details span {
    font-weight: 600;
    color: #5a8f4f;
}

.thanks-next {
    margin: 48px 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c2c2c;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 4px;
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.next-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 700;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555555;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #4a4a4a;
    list-style-type: disc;
}

.legal-container a {
    color: #5a8f4f;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #4a7a3f;
}

.legal-date {
    font-size: 14px;
    color: #666666;
    font-style: italic;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .hero-split,
    .split-container,
    .service-split,
    .contact-split {
        flex-direction: column;
    }

    .split-container.reverse,
    .service-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-text,
    .service-content {
        padding: 40px 24px;
    }

    .hero-text h1,
    .page-header h1 {
        font-size: 36px;
    }

    .split-text h2,
    .section-header h2 {
        font-size: 32px;
    }

    .nav-container {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .process-grid,
    .services-grid,
    .pricing-split,
    .values-split {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}