* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    position: relative;
    background: transparent;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: #1a5f3d;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #1a5f3d;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 60px 40px;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-text-block {
    flex: 1;
    max-width: 560px;
    padding-right: 60px;
    margin-left: 8%;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a5f3d;
    font-weight: 700;
    margin-bottom: 28px;
}

.hero-text-block p {
    font-size: 19px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -80px;
    margin-right: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    box-shadow: -12px 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #e8f1ed;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #1a5f3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #155030;
}

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    background: #ffffff;
    gap: 80px;
    margin-left: 12%;
}

.diagonal-content {
    flex: 1;
    max-width: 520px;
}

.diagonal-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.diagonal-content p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.diagonal-visual {
    flex: 1;
    margin-right: -40px;
}

.diagonal-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    background-color: #e8f1ed;
}

.services-grid-offset {
    padding: 120px 40px 100px;
    background: #f8faf9;
}

.section-title-left {
    font-size: 44px;
    color: #1a5f3d;
    margin-bottom: 60px;
    font-weight: 700;
    margin-left: 8%;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    min-width: 300px;
}

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

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

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

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

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e8f1ed;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 24px 20px;
    line-height: 1.7;
}

.service-card .price {
    font-size: 26px;
    color: #1a5f3d;
    font-weight: 700;
    margin: 0 24px 20px;
}

.service-card .select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #1a5f3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card .select-service:hover {
    background: #155030;
}

.approach-overlap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 40px;
    background: #ffffff;
    gap: 60px;
    margin-right: 10%;
}

.overlap-image {
    flex: 1;
    margin-left: -40px;
}

.overlap-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
    background-color: #e8f1ed;
}

.overlap-text {
    flex: 1;
    max-width: 540px;
}

.overlap-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.contact-form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a5f3d 0%, #155030 100%);
}

.form-container-asymmetric {
    max-width: 620px;
    margin-left: 15%;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-container-asymmetric p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a5f3d;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a5f3d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #155030;
}

.footer-offset {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-block p {
    color: #b8c5d3;
    font-size: 15px;
    line-height: 1.7;
}

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #1a5f3d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #155030;
}

.cookie-btn.reject {
    background: #6c757d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #5a6268;
}

.about-hero-split {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    gap: 70px;
    background: #f8faf9;
    margin-left: 6%;
}

.about-text-primary {
    flex: 1;
    max-width: 550px;
}

.about-text-primary h1 {
    font-size: 48px;
    color: #1a5f3d;
    margin-bottom: 28px;
    line-height: 1.2;
    font-weight: 700;
}

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

.about-image-stack {
    flex: 1;
    margin-right: -40px;
}

.about-image-stack img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    background-color: #e8f1ed;
}

.values-offset {
    padding: 100px 40px;
    background: #ffffff;
    margin-right: 10%;
}

.values-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

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

.value-item h3 {
    font-size: 24px;
    color: #1a5f3d;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.team-diagonal {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.team-content {
    max-width: 800px;
    margin-left: 8%;
}

.team-content h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.team-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 40px;
    background-color: #e8f1ed;
}

.process-overlap {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    background: #ffffff;
    gap: 70px;
    margin-left: 10%;
}

.process-visual {
    flex: 1;
    margin-left: -40px;
}

.process-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0 8px 8px 0;
    background-color: #e8f1ed;
}

.process-text {
    flex: 1;
    max-width: 540px;
}

.process-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.credentials-section {
    padding: 80px 40px;
    background: #f8faf9;
    max-width: 900px;
    margin: 0 auto;
}

.credentials-section h2 {
    font-size: 36px;
    color: #1a5f3d;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.services-header-offset {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    margin-left: 8%;
}

.services-header-offset h1 {
    font-size: 50px;
    color: #1a5f3d;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 19px;
    color: #5a6c7d;
    max-width: 700px;
}

.service-detail {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    gap: 70px;
    background: #ffffff;
}

.service-detail.offset-left {
    margin-left: 6%;
}

.service-detail.offset-right {
    margin-right: 6%;
    background: #f8faf9;
}

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

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

.service-detail-content {
    flex: 1;
    max-width: 580px;
}

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

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

.service-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0 24px;
}

.price-label {
    font-size: 16px;
    color: #5a6c7d;
    font-weight: 600;
}

.price-amount {
    font-size: 30px;
    color: #1a5f3d;
    font-weight: 700;
}

.services-cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a5f3d 0%, #155030 100%);
    text-align: center;
}

.services-cta-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #1a5f3d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

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

.contact-header-diagonal {
    padding: 80px 40px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    margin-right: 8%;
}

.contact-header-diagonal h1 {
    font-size: 50px;
    color: #1a5f3d;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-header-diagonal p {
    font-size: 19px;
    color: #5a6c7d;
    max-width: 700px;
}

.contact-split-layout {
    display: flex;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 80px;
    background: #ffffff;
}

.contact-info-offset {
    flex: 1;
    max-width: 500px;
    margin-left: 8%;
}

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

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

.contact-item h3 {
    font-size: 20px;
    color: #1a5f3d;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.contact-visual {
    flex: 1;
    margin-right: -40px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    background-color: #e8f1ed;
}

.location-section {
    padding: 80px 40px;
    background: #f8faf9;
    max-width: 900px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.thanks-container {
    display: flex;
    align-items: center;
    padding: 80px 40px;
    gap: 70px;
    background: #f8faf9;
    min-height: 70vh;
}

.thanks-content {
    flex: 1;
    max-width: 600px;
    margin-left: 8%;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a5f3d;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.confirmation-details {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #1a5f3d;
}

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

.next-steps h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f3d;
    font-weight: 700;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #1a5f3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #155030;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #1a5f3d;
    border: 2px solid #1a5f3d;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a5f3d;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    margin-right: -40px;
}

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

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

.legal-content h1 {
    font-size: 44px;
    color: #1a5f3d;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookies-table th {
    background: #f8faf9;
    padding: 14px;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
}

.cookies-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #dee2e6;
    color: #5a6c7d;
    font-size: 15px;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-diagonal,
    .approach-overlap,
    .about-hero-split,
    .process-overlap,
    .service-detail,
    .contact-split-layout,
    .thanks-container {
        flex-direction: column;
    }

    .hero-text-block,
    .diagonal-content,
    .overlap-text,
    .about-text-primary,
    .process-text,
    .service-detail-content,
    .contact-info-offset,
    .thanks-content {
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
    }

    .hero-image-offset,
    .diagonal-visual,
    .overlap-image,
    .about-image-stack,
    .process-visual,
    .service-detail-image,
    .contact-visual,
    .thanks-visual {
        margin-left: 0;
        margin-right: 0;
    }

    .services-container {
        flex-direction: column;
    }

    .service-card {
        margin-top: 0 !important;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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