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

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c5f2d;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

.btn-accept:hover {
    background-color: #234a23;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #2a2a2a;
}

.btn-reject:hover {
    background-color: #cacaca;
}

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

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

.brand-wrapper {
    flex: 0 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
    padding: 8px 0;
}

.nav-link.active {
    color: #2c5f2d;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2c5f2d;
}

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

.ad-label {
    font-size: 12px;
    color: #7a7a7a;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    background-color: #f8f9f8;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 60px 80px 80px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #234a23;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 45, 0.3);
}

.hero-visual-block {
    width: 55%;
    position: relative;
    overflow: hidden;
}

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

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

.intro-left {
    flex: 1;
    padding-right: 40px;
}

.intro-left h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
}

.intro-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-right-visual {
    flex: 0 0 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    background-color: #e8ebe8;
}

.intro-right-visual img {
    width: 100%;
    height: 100%;
}

.services-stacked {
    background-color: #f3f5f3;
    padding: 100px 80px;
}

.section-header-angled {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.section-header-angled h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header-angled p {
    font-size: 19px;
    color: #5a5a5a;
    max-width: 700px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(33.333% - 27px);
    min-width: 320px;
}

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

.service-card.offset-1 {
    margin-top: 20px;
}

.service-card.offset-2 {
    margin-top: -10px;
}

.service-card.offset-3 {
    margin-top: 30px;
}

.service-card.offset-4 {
    margin-top: 10px;
}

.service-card.offset-5 {
    margin-top: -5px;
}

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8ebe8;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 24px 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 24px;
    font-weight: 800;
    color: #2c5f2d;
    margin: 20px 24px 24px;
}

.trust-block-diagonal {
    background: linear-gradient(135deg, #2c5f2d 0%, #3a7a3c 100%);
    padding: 80px 60px;
    margin: 100px 0;
    transform: skewY(-2deg);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
    color: #ffffff;
}

.trust-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 24px;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 900px;
}

.citation {
    color: #d4e8d4;
    text-decoration: underline;
    font-weight: 600;
}

.citation:hover {
    color: #ffffff;
}

.trust-stats {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #d4e8d4;
    max-width: 200px;
}

.cta-floating {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-wrapper-asymmetric {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-left: 6px solid #2c5f2d;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.btn-submit {
    padding: 16px 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #234a23;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 60px 80px;
    margin: 80px 0 0;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6a5a2a;
    font-style: italic;
}

.main-footer {
    background-color: #1a2a1a;
    color: #e0e0e0;
    padding: 80px 60px 40px;
}

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

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

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

.footer-col p,
.footer-col ul {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

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

.reference-item {
    margin-bottom: 12px;
    font-size: 13px;
}

.reference-item a {
    color: #7ab87d;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #3a4a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #8a8a8a;
}

.page-header-offset {
    background: linear-gradient(135deg, #f3f5f3 0%, #e8ebe8 100%);
    padding: 100px 80px 80px;
    margin-bottom: 60px;
}

.header-content-block {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 60px;
}

.header-content-block h1 {
    font-size: 54px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.header-content-block p {
    font-size: 20px;
    color: #5a5a5a;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 80px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.story-visual {
    flex: 0 0 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background-color: #e8ebe8;
}

.story-visual img {
    width: 100%;
    height: 100%;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-diagonal {
    background-color: #f8f9f8;
    padding: 100px 80px;
    margin: 100px 0;
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.values-header h2 {
    font-size: 46px;
    font-weight: 800;
    color: #1a1a1a;
}

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

.value-block {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-block h3 {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 16px;
}

.value-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a5a5a;
}

.approach-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 80px;
    display: flex;
    gap: 80px;
}

.approach-left {
    flex: 1;
}

.approach-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.approach-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.approach-right {
    flex: 0 0 380px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    background-color: #f8f9f8;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: #2c5f2d;
    line-height: 1;
}

.step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

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

.team-section h2 {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.team-intro {
    font-size: 19px;
    color: #5a5a5a;
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background-color: #e8ebe8;
}

.team-member h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-member p {
    font-size: 15px;
    color: #6a6a6a;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 80px;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail-block.offset-left .service-detail-visual {
    order: 1;
}

.service-detail-block.offset-left .service-detail-content {
    order: 2;
}

.service-detail-block.offset-right .service-detail-visual {
    order: 2;
}

.service-detail-block.offset-right .service-detail-content {
    order: 1;
}

.service-detail-visual {
    flex: 0 0 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
    background-color: #e8ebe8;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
}

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.service-features {
    list-style: none;
    margin: 28px 0;
}

.service-features li {
    font-size: 16px;
    color: #5a5a5a;
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 900;
    font-size: 18px;
}

.service-price {
    font-size: 32px;
    font-weight: 900;
    color: #2c5f2d;
    margin: 28px 0 20px;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.guarantee-section {
    background-color: #f3f5f3;
    padding: 80px 80px;
    margin: 100px 0 0;
}

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

.guarantee-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.guarantee-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-layout {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 80px;
}

.contact-info-offset {
    margin-left: 60px;
}

.contact-info-offset h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
}

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

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

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

.service-area {
    background-color: #f8f9f8;
    padding: 60px 80px;
    margin: 60px 0 0;
}

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

.area-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.area-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

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

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

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 48px;
}

.next-steps {
    background-color: #f8f9f8;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.step-icon {
    flex: 0 0 36px;
    height: 36px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-item p {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    padding-top: 6px;
}

.service-reference {
    font-size: 17px;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 32px;
}

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

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

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

.legal-content a:hover {
    color: #234a23;
}

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

    .hero-content-offset,
    .hero-visual-block {
        width: 100%;
    }

    .intro-offset,
    .about-story-asymmetric,
    .approach-offset,
    .service-detail-block {
        flex-direction: column;
    }

    .intro-right-visual,
    .story-visual,
    .approach-right,
    .service-detail-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .nav-menu {
        gap: 20px;
    }

    .service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 20px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .service-card {
        width: 100%;
    }

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

    .trust-stats {
        gap: 40px;
    }
}