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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff8a3d;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-dark: #222222;
    --text-light: #666666;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
}

.ad-disclosure {
    background-color: #fffbea;
    color: #7c6d00;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #f0e5a8;
    position: sticky;
    top: 0;
    z-index: 999;
}

.floating-nav {
    position: fixed;
    top: 50px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
}

.nav-toggle span {
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    border-radius: 2px;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-content-offset {
    width: 50%;
    padding: 80px 60px 80px 120px;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(8deg);
    width: 55%;
    height: 75%;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.2);
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.intro-offset {
    display: flex;
    padding: 100px 120px;
    gap: 60px;
    align-items: center;
}

.intro-text-block {
    width: 60%;
}

.intro-text-block h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-text-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-stat-cards {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--white);
}

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

.section-header-offset {
    margin-bottom: 60px;
    margin-left: 15%;
}

.section-header-offset h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-offset p {
    font-size: 19px;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-card.large-card {
    width: calc(50% - 15px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #234d24;
}

.form-section-offset {
    padding: 100px 120px 100px 200px;
    background-color: var(--white);
}

.form-container-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    width: 40%;
}

.form-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.main-form {
    width: 60%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    width: 100%;
    padding: 18px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-submit:hover {
    background-color: #234d24;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 120px;
    background-color: var(--dark-bg);
}

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

.trust-content-overlap h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 50px;
    text-align: center;
}

.testimonials-asymmetric {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 16px;
    flex: 1;
}

.testimonial-text {
    font-size: 17px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-inline-offset {
    padding: 80px 120px 80px 200px;
    background-color: var(--secondary-color);
}

.cta-content {
    max-width: 700px;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-column p {
    font-size: 14px;
    color: #aaaaaa;
    line-height: 1.7;
}

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

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

.footer-column ul li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

.footer-disclaimer p {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.6;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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 {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.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-color: var(--primary-color);
    color: var(--white);
}

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid #666666;
}

.cookie-reject:hover {
    border-color: var(--white);
}

.page-hero-small {
    background-color: var(--primary-color);
    padding: 100px 120px 80px 120px;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero-small p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    display: flex;
    padding: 100px 120px;
    gap: 60px;
    align-items: center;
}

.story-text-offset {
    width: 55%;
}

.story-text-offset h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.story-text-offset p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.story-image-overlap {
    width: 45%;
    position: relative;
}

.story-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.values-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    width: calc(50% - 15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

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

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

.team-approach {
    padding: 100px 200px 100px 120px;
}

.approach-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.expertise-section {
    padding: 100px 120px;
    background-color: var(--light-bg);
}

.expertise-section h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.expertise-item {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    width: calc(50% - 15px);
    border-left: 4px solid var(--secondary-color);
}

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

.expertise-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    padding: 80px 120px;
    text-align: center;
    background-color: var(--white);
}

.cta-about h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.services-detailed {
    padding: 80px 120px;
}

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

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

.service-detail-image {
    width: 45%;
    background-color: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-detail-content {
    width: 55%;
}

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

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

.service-detail-content ul {
    margin: 25px 0 25px 25px;
}

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

.service-pricing-box {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.services-cta-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.contact-main {
    display: flex;
    padding: 100px 120px;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-block {
    width: 50%;
}

.contact-info-block h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-visual {
    width: 50%;
    background-color: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-section {
    padding: 80px 120px;
    background-color: var(--light-bg);
}

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

.location-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.location-section ul {
    margin: 20px 0 0 25px;
}

.location-section ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.faq-contact {
    padding: 80px 120px;
}

.faq-contact h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

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

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

.contact-cta h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.thanks-content {
    display: flex;
    padding: 100px 120px;
    gap: 80px;
    align-items: center;
}

.thanks-message {
    width: 60%;
}

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

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

.thanks-details {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

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

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

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

.thanks-next-steps ol {
    margin-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.thanks-visual {
    width: 40%;
    background-color: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.legal-page {
    padding: 100px 120px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

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

.legal-content ul {
    margin: 20px 0 20px 30px;
}

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

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

.legal-content a:hover {
    color: #234d24;
}

@media screen and (max-width: 1024px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-content-offset {
        width: 100%;
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        transform: none;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

    .intro-text-block,
    .intro-stat-cards {
        width: 100%;
    }

    .services-asymmetric {
        padding: 60px 40px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .service-card,
    .service-card.large-card {
        width: 100%;
    }

    .form-section-offset {
        padding: 60px 40px;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .form-intro,
    .main-form {
        width: 100%;
    }

    .trust-section {
        padding: 60px 40px;
    }

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

    .cta-inline-offset {
        padding: 60px 40px;
    }

    .footer-asymmetric {
        padding: 60px 40px 30px 40px;
    }

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

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

    .about-story {
        flex-direction: column;
        padding: 60px 40px;
    }

    .story-text-offset,
    .story-image-overlap {
        width: 100%;
    }

    .values-section {
        padding: 60px 40px;
    }

    .value-card {
        width: 100%;
    }

    .team-approach {
        padding: 60px 40px;
    }

    .expertise-section {
        padding: 60px 40px;
    }

    .expertise-item {
        width: 100%;
    }

    .services-detailed {
        padding: 60px 40px;
    }

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

    .service-detail-image,
    .service-detail-content {
        width: 100%;
    }

    .contact-main {
        flex-direction: column;
        padding: 60px 40px;
    }

    .contact-info-block,
    .contact-visual {
        width: 100%;
    }

    .location-section,
    .faq-contact,
    .contact-cta {
        padding: 60px 40px;
    }

    .thanks-content {
        flex-direction: column;
        padding: 60px 40px;
    }

    .thanks-message,
    .thanks-visual {
        width: 100%;
    }

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

    .legal-page {
        padding: 60px 40px;
    }

    .page-hero-small {
        padding: 60px 40px;
    }
}