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

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2d8659;
    --accent-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-notice {
    background-color: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
}

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

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-text-block {
    max-width: 580px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    margin-left: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-text-block h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image-asymmetric {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

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

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 63, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image-left {
    flex: 1;
    background-color: var(--bg-light);
}

.intro-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.intro-text-right h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.section-header-offset h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.services-staggered {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 80px;
}

.card-offset-3 {
    margin-left: 160px;
}

.card-offset-4 {
    margin-left: 40px;
}

.card-offset-5 {
    margin-left: 120px;
}

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
    min-width: 350px;
}

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

.service-details {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.btn-select-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #e89450;
    transform: translateX(4px);
}

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

.form-container-offset {
    margin-left: 200px;
    max-width: 700px;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 16px;
    color: var(--text-light);
}

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

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

.form-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-field input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.trust-block {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 40px;
}

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

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 40px;
}

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

.footer-brand,
.footer-links,
.footer-contact {
    flex: 1;
}

.footer-brand h4,
.footer-links h5,
.footer-contact h5 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-brand p,
.footer-contact p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.about-page,
.services-page,
.contact-page,
.thanks-page {
    min-height: 60vh;
}

.about-hero {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

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

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.story-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

.approach-section h2 {
    max-width: 1400px;
    margin: 0 auto 50px;
    font-size: 40px;
    color: var(--text-dark);
}

.approach-blocks {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.approach-item {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.values-irregular {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-block {
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--bg-light);
}

.value-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.team-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    margin-left: 20%;
}

.team-offset h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.services-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.services-intro h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.service-detail-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 100px;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.service-detail-text {
    flex: 1.5;
}

.service-detail-text h3 {
    font-size: 24px;
    margin: 30px 0 16px 0;
    color: var(--text-dark);
}

.service-detail-text h3:first-child {
    margin-top: 0;
}

.service-detail-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-text li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.services-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.contact-header {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.contact-details-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-block address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-email {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.hours-table {
    width: 100%;
    margin-bottom: 20px;
}

.hours-table td {
    padding: 8px 0;
    color: var(--text-light);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-map-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 95, 63, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
}

.contact-additional {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

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

.expectation-item {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.expectation-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.thanks-page {
    padding: 60px 40px;
}

.thanks-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.thanks-message {
    flex: 1.5;
}

.thanks-message h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.thanks-details strong {
    color: var(--primary-color);
}

.next-steps {
    margin-bottom: 40px;
}

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

.next-steps ol {
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
}

.thanks-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.thanks-resources {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 40px;
}

.thanks-resources h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

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

.resource-item {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.resource-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px 0;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-section address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .hero-image-asymmetric {
        width: 50%;
    }

    .hero-text-block {
        margin-left: 20px;
        padding: 40px;
    }

    .intro-grid,
    .story-layout,
    .approach-blocks,
    .trust-points,
    .contact-details-layout,
    .expectations-grid,
    .thanks-content,
    .resources-grid {
        flex-direction: column;
    }

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

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5 {
        margin-left: 0;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .section-header-offset {
        padding-left: 0;
    }

    .team-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-image-asymmetric {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-content-offset {
        padding: 40px 20px;
    }

    .hero-text-block {
        margin: 0;
        padding: 30px;
    }

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

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

    .service-visual {
        min-width: auto;
        height: 250px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}
