* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a7a52;
}

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

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

.nav-asymmetric {
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    background-color: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2d5f3f;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-style: italic;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 8%;
}

.hero-text-block {
    background-color: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 12px 12px 0 rgba(45,95,63,0.1);
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3a7a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45,95,63,0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 75%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: -20px 20px 0 rgba(45,95,63,0.15);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    padding: 8rem 2rem 6rem;
    background-color: #fafafa;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    padding-left: 3rem;
}

.intro-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.intro-image-side {
    width: 45%;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    transform: translateY(-40px);
    box-shadow: 15px 15px 0 rgba(45,95,63,0.1);
}

.intro-image-side img {
    width: 100%;
    height: 100%;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-header-creative {
    max-width: 800px;
    margin: 0 0 4rem 10%;
}

.services-header-creative h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-creative p {
    font-size: 1.2rem;
    color: #666;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card.offset-left {
    margin-left: 5%;
    margin-right: 20%;
}

.service-card.offset-right {
    margin-left: 20%;
    margin-right: 5%;
}

.service-card.offset-center {
    margin-left: 12%;
    margin-right: 12%;
}

.service-image {
    width: 300px;
    height: 200px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.btn-service,
.btn-service-detail {
    padding: 0.8rem 1.8rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover,
.btn-service-detail:hover {
    background-color: #3a7a52;
    transform: translateX(5px);
}

.form-section-creative {
    padding: 6rem 2rem;
    background-color: #2d5f3f;
}

.form-container-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-text-side {
    flex: 1;
    color: #ffffff;
    padding-top: 2rem;
}

.form-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-text-side p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form-asymmetric {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 10px 10px 0 rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d5f3f;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.trust-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-offset {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2d5f3f;
    font-size: 1.15rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
}

.testimonial-offset:first-child {
    transform: translateY(-30px);
}

.testimonial-offset:last-child {
    transform: translateY(30px);
}

.testimonial-offset cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #2d5f3f;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2d5f3f;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.about-hero-offset {
    padding: 6rem 2rem 4rem;
    background-color: #2d5f3f;
    text-align: left;
    margin-left: 10%;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.2;
}

.about-story-irregular {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-block-left {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.story-image {
    width: 400px;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: -15px 15px 0 rgba(45,95,63,0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
}

.values-asymmetric {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.values-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
    padding-left: 5%;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

.values-grid-creative {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 5px solid #2d5f3f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.value-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.value-card.offset-position-1 {
    margin-left: 5%;
    margin-right: 25%;
}

.value-card.offset-position-2 {
    margin-left: 25%;
    margin-right: 5%;
}

.value-card.offset-position-3 {
    margin-left: 15%;
    margin-right: 15%;
}

.team-section-irregular {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.approach-offset {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text-side {
    flex: 1;
}

.approach-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.approach-text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.approach-visual {
    width: 450px;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 15px -15px 0 rgba(45,95,63,0.15);
}

.approach-visual img {
    width: 100%;
    height: 100%;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #2d5f3f;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2d5f3f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.services-hero-creative {
    padding: 6rem 2rem 4rem;
    background-color: #fafafa;
    margin-right: 15%;
}

.services-hero-text h1 {
    font-size: 3rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.services-hero-text p {
    font-size: 1.2rem;
    color: #555;
}

.services-detailed {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1300px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-block.left-aligned {
    margin-left: 5%;
}

.service-detail-block.right-aligned {
    margin-right: 5%;
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 500px;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 10px 10px 0 rgba(45,95,63,0.1);
}

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

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

.service-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.service-detail-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.service-pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5f3f;
}

.services-additional {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.additional-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-services-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5f3f;
}

.additional-grid {
    display: flex;
    gap: 2rem;
}

.additional-service {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.additional-service h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.additional-service p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.additional-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5f3f;
}

.services-cta-section {
    padding: 5rem 2rem;
    background-color: #2d5f3f;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-hero-offset {
    padding: 6rem 2rem 4rem;
    background-color: #fafafa;
    margin-left: 8%;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: #555;
}

.contact-details-irregular {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-info-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2.5rem;
    background-color: #fafafa;
    border-left: 5px solid #2d5f3f;
}

.info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.info-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.info-card.offset-card-1 {
    margin-left: 5%;
    margin-right: 30%;
}

.info-card.offset-card-2 {
    margin-left: 25%;
    margin-right: 10%;
}

.info-card.offset-card-3 {
    margin-left: 15%;
    margin-right: 20%;
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: #f5f5f5;
}

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

.approach-content-irregular h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.approach-content-irregular p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.contact-cta-offset {
    padding: 5rem 2rem;
    background-color: #2d5f3f;
    text-align: center;
}

.contact-cta-wrapper h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta-wrapper p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 6rem 2rem;
    background-color: #2d5f3f;
    text-align: center;
}

.thanks-content-center h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.thanks-content-center p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.thanks-next-steps {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.next-steps-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d5f3f;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
}

.step-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-top: 4px solid #2d5f3f;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.step-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-explore {
    padding: 5rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.explore-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.explore-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.explore-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.link-card {
    padding: 1.5rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.link-card:hover {
    background-color: #3a7a52;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(45,95,63,0.3);
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2d5f3f;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .intro-wrapper,
    .approach-wrapper,
    .story-block-left,
    .form-container-offset,
    .service-detail-block {
        flex-direction: column;
    }

    .intro-image-side,
    .approach-visual,
    .story-image,
    .service-detail-image {
        width: 100%;
        transform: none;
    }

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

    .service-image {
        width: 100%;
    }

    .trust-content-irregular,
    .footer-content,
    .steps-grid,
    .additional-grid,
    .explore-links {
        flex-direction: column;
    }

    .testimonial-offset {
        transform: none !important;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .value-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .info-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}