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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 6%;
    background: #ffffff;
    position: relative;
}

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

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

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

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

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

.hero-text-block {
    flex: 1;
    max-width: 520px;
    z-index: 2;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a472a;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #495057;
    line-height: 1.5;
}

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

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

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

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

.intro-asymmetric {
    display: flex;
    padding: 100px 6%;
    gap: 60px;
    align-items: center;
    background: #ffffff;
}

.intro-content {
    flex: 1.2;
}

.intro-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.intro-visual {
    flex: 1;
    margin-left: -30px;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.services-grid {
    padding: 100px 6%;
    background: #f8f9fa;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 8%;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a472a;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 19px;
    color: #6c757d;
}

.service-card {
    display: flex;
    background: #ffffff;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

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

.card-left {
    margin-left: 0;
    margin-right: 10%;
}

.card-right {
    margin-left: 10%;
    margin-right: 0;
}

.card-full {
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
}

.service-card img {
    width: 45%;
    height: 300px;
    object-fit: cover;
    background-color: #dee2e6;
}

.card-right img {
    order: 2;
}

.card-full img {
    width: 100%;
    height: 350px;
}

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

.service-content-wide {
    padding: 45px;
    text-align: center;
}

.service-content h3,
.service-content-wide h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p,
.service-content-wide p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #495057;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background: #1a472a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.service-content-wide .select-service {
    align-self: center;
}

.select-service:hover {
    background: #2d5a3f;
    transform: translateY(-2px);
}

.methodology-offset {
    display: flex;
    padding: 100px 6%;
    gap: 70px;
    align-items: center;
    background: #ffffff;
}

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

.method-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e9ecef;
}

.method-text {
    flex: 1.3;
}

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

.method-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #495057;
}

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

.method-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #495057;
}

.method-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a472a;
    font-weight: 700;
    font-size: 20px;
}

.testimonials-stacked {
    padding: 100px 6%;
    background: #f8f9fa;
}

.testimonials-stacked h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a472a;
    font-weight: 700;
    text-align: center;
}

.testimonial-block {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-block.offset-right {
    margin-left: auto;
    margin-right: 0;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.form-section {
    padding: 100px 6%;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 100%);
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.form-container > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e9ecef;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

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

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

.disclaimer-section {
    padding: 60px 6%;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-section p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 6% 30px;
}

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

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

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

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

.footer-block a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #495057;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 25px;
    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;
}

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: #2d5a3f;
}

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

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

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 40px 5%;
    }

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

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

    .hero-image-offset {
        margin-top: 0;
        margin-left: 0;
    }

    .intro-asymmetric,
    .methodology-offset {
        flex-direction: column;
        padding: 60px 5%;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

    .card-right img {
        order: 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a472a;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.6;
}

.thanks-service {
    font-size: 24px;
    font-weight: 600;
    color: #1a472a;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #1a472a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.thanks-container a:hover {
    background: #2d5a3f;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 6%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a472a;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #495057;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 8px;
    color: #495057;
    line-height: 1.6;
}

.contact-page {
    padding: 80px 6%;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a472a;
    font-weight: 700;
}

.contact-info h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
}

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

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}