* {
    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: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a3d;
}

.nav-ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 3px;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

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

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 580px;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 3rem;
    border-radius: 2px;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 70%;
    z-index: 1;
    overflow: hidden;
}

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

.intro-offset {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto 0 15%;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #34495e;
}

.intro-narrow p {
    margin-bottom: 1.5rem;
}

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

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 4rem 8%;
}

.section-header-left h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 0 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 340px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

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

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-info p {
    color: #5d6d7e;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.select-service {
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #3d6a4d;
}

.process-overlap {
    position: relative;
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f6f7;
}

.process-image-bg {
    position: absolute;
    left: 5%;
    top: 15%;
    width: 45%;
    height: 70%;
    overflow: hidden;
    z-index: 1;
}

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

.process-text-card {
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: 8%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.process-text-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.process-steps li {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.benefits-stacked {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.centered-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 700;
}

.benefits-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5a3d;
}

.benefit-block h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-block p {
    color: #5d6d7e;
    line-height: 1.8;
}

.form-section-asymmetric {
    position: relative;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    background-color: #f4f6f7;
    min-height: 700px;
}

.form-container-offset {
    max-width: 550px;
    margin-left: 8%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.form-container-offset h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

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

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

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

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

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

.form-bg-visual {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 40%;
    height: 70%;
    overflow: hidden;
    z-index: 1;
}

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

.footer-offset {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 240px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(236, 240, 241, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.about-header-split {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 4rem 2rem;
    gap: 3rem;
}

.about-text-side {
    flex: 1;
    max-width: 600px;
    padding: 2rem 3rem;
}

.about-text-side h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-text-side p {
    font-size: 1.15rem;
    color: #5d6d7e;
    line-height: 1.8;
}

.about-image-side {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

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

.story-narrow {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.story-narrow h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-narrow p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.team-offset-grid {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.team-offset-grid h2 {
    max-width: 1400px;
    margin: 0 auto 4rem;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    padding-left: 3rem;
}

.team-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 0 3rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 1.7rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.member-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

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

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.member-info p {
    color: #5d6d7e;
    line-height: 1.7;
}

.values-stacked {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-stacked h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2rem 2.5rem;
    background-color: #f8f9fa;
    border-left: 5px solid #2d5a3d;
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    color: #5d6d7e;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.btn-cta:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

.services-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-intro {
    font-size: 1.2rem;
    color: #5d6d7e;
    line-height: 1.8;
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 2px;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes {
    list-style-position: inside;
    margin-bottom: 2rem;
    padding-left: 0;
}

.service-includes li {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-price-display {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #5d6d7e;
    margin-right: 1rem;
}

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

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

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

.service-cta-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f4f6f7;
    border-radius: 2px;
}

.service-cta-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-cta-section p {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
}

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

.btn-cta-secondary:hover {
    background-color: #3d6a4d;
    transform: translateY(-2px);
}

.contact-layout {
    display: flex;
    min-height: 600px;
    position: relative;
}

.contact-info-block {
    flex: 1;
    padding: 5rem 4rem;
    max-width: 600px;
}

.contact-info-block h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-info-block > p {
    font-size: 1.15rem;
    color: #5d6d7e;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.email-display {
    font-weight: 500;
    color: #2d5a3d;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5a3d;
    margin-top: 3rem;
}

.contact-note p {
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-intro {
    font-size: 1.15rem;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #3d6a4d;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e8ed;
    font-style: italic;
    color: #7f8c8d;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.15rem;
    color: #5d6d7e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-content p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6a4d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2d5a3d;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #2d5a3d;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5a3d;
    color: #ffffff;
}

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

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

    .hero-text-block {
        margin-left: 0;
    }

    .process-overlap {
        flex-direction: column;
        padding: 4rem 2rem;
    }

    .process-image-bg {
        position: relative;
        width: 100%;
        height: 300px;
        left: 0;
        top: 0;
        margin-bottom: 2rem;
    }

    .process-text-card {
        margin: 0;
    }

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

    .form-container-offset {
        margin: 0 auto;
    }

    .form-bg-visual {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        margin-top: 2rem;
    }

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

    .service-detail-content {
        min-width: auto;
    }

    .about-header-split {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .section-header-left {
        margin-left: 0;
        text-align: center;
    }

    .services-grid-offset {
        padding: 0 1rem;
    }

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