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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2d5f3f;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #234a32;
    cursor: pointer;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
}

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

.intro-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    text-align: center;
}

.services-showcase {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card-left,
.service-card-right {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card-left {
    flex-direction: row;
}

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

.service-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.service-details {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 16px;
}

.pricing {
    font-size: 32px;
    color: #2d5f3f;
    font-weight: 700;
    margin: 24px 0;
}

.btn-select {
    padding: 14px 28px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #234a32;
}

.trust-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.trust-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.form-section {
    padding: 80px 40px;
    background-color: #2d5f3f;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.form-section > .form-container > p {
    font-size: 17px;
    color: #e9ecef;
    text-align: center;
    margin-bottom: 40px;
}

.consultation-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #234a32;
}

.final-cta {
    padding: 100px 40px;
    background-color: #1a1a1a;
}

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

.cta-content-centered h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 18px;
    color: #e9ecef;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    cursor: pointer;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c5d6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 20px 40px;
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

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

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

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

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

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

.btn-cookie.secondary:hover {
    background-color: #f8f9fa;
}

.page-hero {
    padding: 100px 40px;
    background-color: #2d5f3f;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: #e9ecef;
}

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

.about-image-left {
    flex: 1;
    background-color: #e9ecef;
}

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

.about-content-right {
    flex: 1;
}

.about-content-right h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    color: #2d5f3f;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.expertise-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.expertise-content-left {
    flex: 1;
}

.expertise-content-left h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.expertise-content-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.expertise-content-left ul {
    margin: 24px 0;
    padding-left: 24px;
}

.expertise-content-left ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

.expertise-image-right {
    flex: 1;
    background-color: #e9ecef;
}

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

.approach-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.approach-section > .container-narrow > p {
    font-size: 18px;
    color: #6c757d;
    text-align: center;
    margin-bottom: 50px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d5f3f;
    opacity: 0.3;
    flex-shrink: 0;
}

.step h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.commitment-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.commitment-image-left {
    flex: 1;
    background-color: #e9ecef;
}

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

.commitment-content-right {
    flex: 1;
}

.commitment-content-right h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.commitment-content-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.features-list {
    margin: 24px 0;
    padding-left: 24px;
}

.features-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

.service-price-large {
    font-size: 36px;
    color: #2d5f3f;
    font-weight: 700;
    margin: 28px 0 20px;
}

.btn-select-large {
    padding: 16px 32px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-large:hover {
    background-color: #234a32;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: flex;
    gap: 80px;
}

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

.contact-info-side h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-info-side > p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: #2d5f3f;
    margin-bottom: 10px;
    font-weight: 700;
}

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

.contact-form-side {
    flex: 1;
}

.contact-image-top {
    margin-bottom: 30px;
    background-color: #e9ecef;
}

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

.contact-form-wrapper h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-form-wrapper > p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 24px;
}

.info-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.info-section h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.info-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-lead {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

#service-reference {
    color: #2d5f3f;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next-steps h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.thanks-next-steps ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

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

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

.btn-primary:hover {
    background-color: #234a32;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2d5f3f;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.thanks-additional {
    padding: 20px;
    background-color: #e9ecef;
    border-radius: 8px;
}

.thanks-additional p {
    font-size: 15px;
    color: #495057;
}

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

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

.legal-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
    font-weight: 700;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: #2d5f3f;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-container h4 {
    font-size: 18px;
    color: #495057;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 16px 0;
    padding-left: 28px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-split,
    .about-split,
    .container-split,
    .expertise-split,
    .commitment-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card-left,
    .service-card-right {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .hero-left h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}