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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c5d;
    --accent-color: #7ea68d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #2d5a3d;
}

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(--background-white);
}

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

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    background-color: var(--accent-color);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-inline {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: var(--background-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

.trust-content-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.trust-visual-right {
    flex: 1;
    background-color: var(--background-light);
}

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

.methodology-full {
    background-color: var(--background-light);
    padding: 80px 40px;
    margin: 80px 0;
}

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

.methodology-wrapper h2 {
    font-size: 42px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.method-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 8px;
}

.method-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

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

.services-intro-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.services-text h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-text p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: var(--background-light);
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 20px;
}

.consultation-form-section {
    background-color: var(--background-light);
    padding: 80px 40px;
    margin: 80px 0;
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.form-wrapper {
    flex: 1;
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.insights-wrapper h2 {
    font-size: 40px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
}

.insights-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 21px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.site-footer {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 60px 40px 20px;
    margin-top: 80px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--background-white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    border-top: 2px solid var(--border-color);
    padding: 24px 40px;
    display: none;
    z-index: 1000;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 15px;
    color: var(--text-dark);
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: var(--background-light);
    color: var(--text-dark);
}

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

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

.hero-text-left {
    flex: 1;
}

.hero-text-left h1 {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.hero-image-right {
    flex: 1;
    background-color: var(--background-light);
}

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

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

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

.story-content-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.story-text {
    flex: 1.2;
}

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

.story-image {
    flex: 1;
    background-color: var(--background-light);
}

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

.values-full {
    background-color: var(--background-light);
    padding: 80px 40px;
    margin: 80px 0;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    background-color: var(--background-white);
    padding: 35px 30px;
    border-radius: 8px;
}

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

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

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

.team-visual-left {
    flex: 1;
    background-color: var(--background-light);
}

.team-visual-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.team-content-right {
    flex: 1;
    padding-left: 20px;
}

.team-content-right h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

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

.expertise-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.expertise-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 21px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.commitment-full {
    background-color: var(--background-light);
    padding: 80px 40px;
    margin: 80px 0;
}

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

.commitment-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.services-hero {
    background-color: var(--background-light);
    padding: 80px 40px;
}

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

.services-hero-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

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

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

.service-block.reverse {
    flex-direction: row-reverse;
}

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

.service-content-area h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.service-image-area {
    flex: 1;
    background-color: var(--background-light);
}

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

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

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

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.services-cta-section {
    background-color: var(--background-light);
    padding: 80px 40px;
    margin: 80px 0;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.services-form {
    background-color: var(--background-white);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.form-row .form-group {
    flex: 1;
}

.contact-hero {
    background-color: var(--background-light);
    padding: 80px 40px;
}

.contact-hero-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-wrapper h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

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

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

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-visual-right {
    flex: 1;
    background-color: var(--background-light);
}

.contact-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-directions-full {
    background-color: var(--background-light);
    padding: 80px 40px;
    margin: 80px 0;
}

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

.directions-wrapper h2 {
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.directions-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 35px 30px;
    border-radius: 8px;
}

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

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

.contact-expectations {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.thanks-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-wrapper {
    text-align: center;
}

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

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

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

.service-confirmation {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.service-selected {
    font-size: 16px;
    color: var(--text-dark);
}

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

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

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 240px;
    background-color: var(--background-light);
    padding: 30px 25px;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.thanks-resources {
    margin-top: 60px;
}

.thanks-resources h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.resource-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    padding: 12px 24px;
    background-color: var(--background-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.resource-link:hover {
    background-color: var(--border-color);
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

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

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

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

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

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

.legal-container ul {
    margin: 16px 0 16px 30px;
}

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

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

.legal-container a:hover {
    color: var(--secondary-color);
}

.contact-info {
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .trust-section,
    .page-hero-split,
    .story-content-split,
    .team-approach-split,
    .service-block,
    .contact-info-split {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .hero-content h1,
    .hero-text-left h1,
    .services-hero-content h1,
    .contact-hero-wrapper h1 {
        font-size: 36px;
    }

    .methodology-wrapper h2,
    .values-container h2,
    .insights-wrapper h2 {
        font-size: 32px;
    }
}