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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --border-light: #e0e0e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

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

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

.cookie-actions .btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-actions .btn-reject:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.cookie-actions a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
}

.cookie-actions a:hover {
    text-decoration: underline;
}

.header-asymmetric {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: var(--light-bg);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

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

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

.hero-image-offset {
    position: absolute;
    top: -50px;
    right: -5%;
    width: 55%;
    height: 700px;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-color: var(--border-light);
}

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

.hero-text-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

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

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

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.text-irregular {
    flex: 1;
    padding-left: 60px;
}

.text-irregular h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.text-irregular p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.image-overlap {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transform: translateX(40px);
    background-color: var(--border-light);
}

.image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

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

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    font-size: 42px;
    padding-left: 120px;
    color: var(--text-dark);
}

.service-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 35px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-card.offset-left {
    margin-left: 80px;
    margin-right: auto;
    width: 85%;
}

.service-card.offset-right {
    margin-left: auto;
    margin-right: 80px;
    width: 85%;
}

.service-card.offset-center {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
}

.service-image {
    width: 250px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex-shrink: 0;
    background-color: var(--border-light);
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.select-service {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.trust-block-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.trust-content {
    flex: 1;
    padding-right: 40px;
}

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

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.stats-irregular {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 5px;
}

.trust-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transform: translateY(-30px);
    background-color: var(--border-light);
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.form-section-asymmetric {
    background-color: var(--dark-bg);
    padding: 100px 40px;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 15%;
    background-color: var(--white);
    padding: 60px;
    border-radius: 10px;
}

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

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.service-display {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.service-display p {
    margin: 5px 0;
    font-size: 15px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.testimonials-irregular h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-blocks {
    display: flex;
    gap: 60px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 10px;
    position: relative;
}

.testimonial.offset-1 {
    transform: translateY(-20px);
}

.testimonial.offset-2 {
    transform: translateY(20px);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 15px;
    color: var(--text-light);
    font-style: normal;
}

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 40px 30px;
}

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--border-light);
}

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

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

.footer-block ul li a {
    color: var(--border-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--border-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: var(--border-light);
}

.about-hero-offset {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.about-text-block h1 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image-offset {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    transform: translateY(-40px);
    background-color: var(--border-light);
}

.about-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

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

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

.values-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-block {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 70%;
}

.value-block.offset {
    margin-left: auto;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.team-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-stats {
    display: flex;
    gap: 80px;
    justify-content: center;
}

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

.stat-item .number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-item .label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
    text-align: center;
}

.approach-irregular {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: var(--border-light);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.process-list {
    list-style-position: inside;
    padding-left: 0;
}

.process-list li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.process-list li strong {
    color: var(--text-dark);
}

.cta-about-offset {
    background-color: var(--primary-color);
    padding: 80px 40px;
    text-align: center;
    margin-top: 100px;
}

.cta-about-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-about-offset p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

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

.cta-button:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.services-hero-irregular {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 40px;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-full-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

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

.service-detail.offset-layout-1 {
    margin-left: 0;
}

.service-detail.offset-layout-2 {
    margin-left: auto;
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: var(--border-light);
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.service-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-info ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-price-info {
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
    margin-right: 10px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service-btn {
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-services-offset {
    background-color: var(--light-bg);
    padding: 80px 40px;
    text-align: center;
}

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

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

.contact-hero-offset {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 40px;
}

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

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

.contact-info-asymmetric {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

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

.info-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.info-item .note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.contact-image-offset {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: var(--border-light);
}

.contact-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.contact-cta-section {
    background-color: var(--primary-color);
    padding: 80px 40px;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
}

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

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.service-confirmation p {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

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

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

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

.next-steps ol li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        clip-path: none;
    }

    .hero-text-block {
        width: 100%;
    }

    .intro-offset,
    .trust-block-offset,
    .about-hero-offset,
    .approach-irregular,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .text-irregular {
        padding-left: 0;
    }

    .image-overlap {
        transform: none;
    }

    .service-card.offset-left,
    .service-card.offset-right,
    .service-card.offset-center {
        margin: 0 auto;
        width: 100%;
    }

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

    .service-detail.offset-layout-2 {
        flex-direction: column;
    }

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

    .form-container-offset {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .nav-offset {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .service-image {
        width: 100%;
    }

    .stats-irregular,
    .team-stats {
        flex-direction: column;
        gap: 30px;
    }

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