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

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

.floating-nav {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    color: #2d5a3d;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5a3d;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 12px;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.hero-visual-block {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: sticky;
    top: 0;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #234a30;
}

.intro-diagonal {
    padding: 100px 80px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
    background: #f8faf9;
}

.intro-text-large {
    flex: 2;
}

.intro-text-large h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text-large p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.intro-stats-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d5a3d;
    line-height: 1;
}

.stat-desc {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.problem-visual {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.problem-image-offset {
    flex: 1;
    background-size: cover;
    background-position: center;
    transform: translateX(-40px);
}

.problem-text-block {
    flex: 1;
    padding: 80px 100px 80px 80px;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-text-block h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    margin-bottom: 40px;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: 700;
}

.link-arrow {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.link-arrow:hover {
    gap: 14px;
}

.link-arrow:after {
    content: "→";
}

.services-grid-asymmetric {
    padding: 120px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.services-header-offset {
    flex: 1 1 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.services-header-offset h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #5a6c7d;
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card-small {
    flex: 1 1 calc(40% - 15px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 25px;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
    display: block;
}

.btn-select-service {
    padding: 14px 30px;
    background: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #234a30;
}

.trust-section {
    padding: 100px 80px;
    background: #f8faf9;
}

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

.trust-content-wide h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.trust-blocks {
    display: flex;
    gap: 50px;
}

.trust-block {
    flex: 1;
}

.trust-block h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5a3d;
}

.trust-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.testimonials-stacked {
    padding: 100px 120px 100px 200px;
    background: #2c3e50;
    color: #ffffff;
}

.testimonials-stacked h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonial-item {
    margin-bottom: 50px;
    padding-left: 40px;
    border-left: 4px solid #2d5a3d;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #95a5a6;
}

.form-section-offset {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.form-container {
    flex: 1;
    padding: 80px;
    background: #f8faf9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.form-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 15px;
    background: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5a3d;
}

.btn-submit {
    padding: 16px 40px;
    background: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #234a30;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 30px 80px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.footer-col p {
    font-size: 15px;
    color: #95a5a6;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: #2d5a3d;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #234a30;
}

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

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

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

.about-hero-text {
    flex: 1;
    padding: 120px 80px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8faf9;
}

.about-hero-text h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 21px;
    line-height: 1.7;
    color: #5a6c7d;
}

.about-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.story-section {
    padding: 100px 120px;
    max-width: 900px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.values-asymmetric {
    padding: 80px;
    background: #f8faf9;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card-large {
    flex: 1 1 100%;
    padding: 50px;
    background: #2c3e50;
    color: #ffffff;
    border-radius: 12px;
}

.value-card-medium {
    flex: 1 1 calc(50% - 15px);
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card-large h3,
.value-card-medium h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.value-card-medium h3 {
    color: #2d5a3d;
}

.value-card-large p,
.value-card-medium p {
    font-size: 17px;
    line-height: 1.7;
}

.value-card-medium p {
    color: #5a6c7d;
}

.team-section {
    padding: 100px 80px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.team-member {
    flex: 1 1 280px;
    max-width: 300px;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

.team-role {
    font-size: 14px;
    color: #7f8c8d;
}

.cta-about {
    padding: 100px 80px;
    background: #2d5a3d;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #2d5a3d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #f0f0f0;
}

.services-hero {
    padding: 140px 80px 80px 80px;
    text-align: center;
    background: #f8faf9;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.service-detail-offset {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.service-detail-reverse {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    flex-direction: row-reverse;
}

.service-detail-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.price-box {
    margin: 30px 0;
    padding: 20px;
    background: #f8faf9;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 15px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d5a3d;
}

.btn-service-select {
    padding: 14px 30px;
    background: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-service-select:hover {
    background: #234a30;
}

.form-section-centered {
    padding: 100px 80px;
    background: #f8faf9;
}

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

.form-container-wide h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container-wide p {
    font-size: 17px;
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 50px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.btn-submit-large {
    width: 100%;
    padding: 18px 40px;
    background: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit-large:hover {
    background: #234a30;
}

.contact-hero {
    padding: 140px 80px 80px 80px;
    text-align: center;
    background: #f8faf9;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-layout {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.contact-info-block {
    flex: 1;
    padding: 80px;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

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

.contact-item h4 {
    font-size: 18px;
    color: #2d5a3d;
    margin-bottom: 12px;
}

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

.contact-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.map-section {
    padding: 80px;
}

.map-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.map-overlay p {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
}

.thanks-container {
    display: flex;
    align-items: stretch;
    min-height: 80vh;
}

.thanks-content {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2d5a3d;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    max-width: 600px;
    margin-bottom: 20px;
}

.thanks-service {
    font-size: 16px;
    color: #2d5a3d;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.btn-primary {
    padding: 14px 35px;
    background: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #234a30;
}

.btn-secondary {
    padding: 14px 35px;
    background: transparent;
    color: #2d5a3d;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #2d5a3d;
    font-weight: 500;
    transition: all 0.3s;
}

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

.thanks-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        top: 10px;
        right: 10px;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-visual-block {
        min-height: 400px;
    }

    .problem-visual,
    .service-detail-offset,
    .service-detail-reverse,
    .form-section-offset,
    .about-hero-split,
    .contact-layout,
    .thanks-container {
        flex-direction: column;
    }

    .trust-blocks {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .value-card-medium {
        flex: 1 1 100%;
    }
}