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

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

.header-offset {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.brand-offset {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #4a7c59;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 6%;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-text-float {
    position: relative;
    z-index: 10;
    max-width: 580px;
    padding: 48px;
    background-color: rgba(255, 255, 255, 0.96);
    border-left: 4px solid #4a7c59;
}

.hero-text-float h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a2930;
}

.hero-text-float p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #555;
}

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

.btn-primary:hover {
    background-color: #3d6849;
}

.intro-irregular {
    display: flex;
    gap: 60px;
    padding: 100px 6%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

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

.intro-block-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-block-left p {
    font-size: 18px;
    color: #555;
}

.intro-stats-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-left: 3px solid #4a7c59;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a7c59;
}

.stat-label {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.services-creative {
    padding: 100px 6%;
    background-color: #fafbfc;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 8%;
}

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

.service-card-overlap {
    flex: 1 1 calc(50% - 20px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a2930;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

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

.btn-service {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #1a2930;
}

.trust-section-offset {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.trust-content-irregular {
    flex: 1.3;
}

.trust-content-irregular h2 {
    font-size: 36px;
    margin-bottom: 28px;
}

.trust-content-irregular p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.trust-content-irregular a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.testimonial-float {
    flex: 0.7;
    margin-top: 40px;
}

.testimonial-float blockquote {
    background-color: #f8f9fa;
    padding: 36px;
    border-left: 4px solid #4a7c59;
    font-style: italic;
}

.testimonial-float cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

.form-section-creative {
    padding: 100px 6%;
    background-color: #fafbfc;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto 0 10%;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.form-container-offset > p {
    margin-bottom: 32px;
    color: #555;
    font-size: 17px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

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

.btn-submit {
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3d6849;
}

.disclaimer-section {
    padding: 60px 6%;
    background-color: #fff8e1;
    border-top: 2px solid #f9c74f;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

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

.footer-main {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-block a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #4a5568;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references ol li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-references a {
    color: #90cdf4;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
    font-size: 14px;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-cookie:not(.btn-secondary) {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-cookie:not(.btn-secondary):hover {
    background-color: #3d6849;
}

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

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

.page-hero-small {
    padding: 80px 6%;
    background-color: #fafbfc;
    border-bottom: 1px solid #e2e8f0;
}

.page-hero-small h1 {
    font-size: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-intro-offset {
    display: flex;
    gap: 60px;
    padding: 100px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image-float {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -40px;
}

.about-image-float img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section-creative {
    padding: 100px 6%;
    background-color: #fafbfc;
}

.values-section-creative h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.value-card {
    flex: 1 1 calc(33.333% - 28px);
    min-width: 280px;
    padding: 36px;
    background-color: #ffffff;
    border-top: 3px solid #4a7c59;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

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

.team-offset-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.team-layout-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-member {
    padding: 32px;
    background-color: #fafbfc;
    border-left: 4px solid #4a7c59;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-member p:not(.team-role) {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.cta-section-inline {
    padding: 100px 6%;
    background-color: #4a7c59;
    color: #ffffff;
}

.cta-content-irregular {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content-irregular p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-content-irregular .btn-primary {
    background-color: #ffffff;
    color: #4a7c59;
}

.cta-content-irregular .btn-primary:hover {
    background-color: #f0f0f0;
}

.services-detail-section {
    padding: 60px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
}

.service-detail-content ul {
    margin-bottom: 28px;
    padding-left: 24px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 24px;
}

.service-detail-image {
    flex: 0.8;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-section-offset {
    padding: 80px 6%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4a7c59;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-cta-offset {
    flex: 0.8;
    background-color: #fafbfc;
    padding: 48px;
    border-radius: 8px;
    align-self: flex-start;
    margin-top: 60px;
}

.contact-cta-offset h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-cta-offset p {
    font-size: 16px;
    margin-bottom: 28px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 6%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #4a7c59;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.legal-page a {
    color: #4a7c59;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 300px;
        clip-path: none;
    }

    .hero-text-float {
        width: 100%;
        max-width: 100%;
    }

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

    .intro-irregular,
    .trust-section-offset,
    .about-intro-offset,
    .contact-section-offset {
        flex-direction: column;
        gap: 40px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-card-overlap {
        min-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }
}