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

:root {
    --primary-color: #2d5016;
    --secondary-color: #8b6f47;
    --accent-color: #c4986f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-cream: #fefdfb;
    --border-color: #e0d9cd;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 30px 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.nav-brand a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 40px;
}

.nav-menu {
    list-style: none;
    flex-grow: 1;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    padding-left: 5px;
}

.nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.nav-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.nav-footer a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.main-content {
    margin-left: 220px;
    min-height: 100vh;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3509 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 60px;
}

.hero-text-box h1 {
    color: var(--white);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

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

.intro-columns {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    background-color: var(--white);
}

.column-main {
    flex: 2;
}

.column-main h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

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

.column-side {
    flex: 1;
}

.side-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-left: 4px solid var(--secondary-color);
}

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

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.services-preview {
    padding: 90px 60px;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 400;
}

.services-grid-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    padding: 35px;
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.large {
    flex: 1 1 100%;
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-card.featured {
    position: relative;
    background-color: #f4f0e8;
    border: 2px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 0 0 350px;
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

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

.price-tag {
    display: inline-block;
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 15px 0;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    font-size: 15px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-service:hover {
    background-color: #1a3509;
}

.btn-service.primary {
    background-color: var(--secondary-color);
}

.btn-service.primary:hover {
    background-color: #6f5738;
}

.story-section {
    padding: 100px 60px;
    background-color: var(--white);
}

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

.story-text {
    flex: 1;
}

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

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

.story-image {
    flex: 0 0 420px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.testimonials-magazine {
    padding: 90px 60px;
    background-color: var(--bg-light);
}

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

.testimonials-layout {
    display: flex;
    gap: 30px;
}

.testimonial-block {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-left: 3px solid var(--accent-color);
}

.testimonial-block.tall {
    flex: 1.5;
}

.testimonial-block blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-block cite {
    font-style: normal;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: bold;
}

.value-proposition {
    padding: 80px 60px;
    background-color: var(--white);
}

.value-grid {
    display: flex;
    gap: 50px;
}

.value-item {
    flex: 1;
}

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

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

.regional-focus {
    padding: 90px 60px;
    background-color: var(--bg-light);
}

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

.regions-magazine {
    display: flex;
    gap: 35px;
}

.region-card {
    flex: 1;
    background-color: var(--white);
    overflow: hidden;
}

.region-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.region-card h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
    color: var(--primary-color);
}

.region-card p {
    padding: 0 25px 30px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-sticky-section {
    padding: 90px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3509 100%);
}

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

.cta-content-box h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 400;
}

.cta-content-box p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.btn-cta-main {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    border-radius: 2px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-cta-main:hover {
    background-color: #6f5738;
    transform: scale(1.05);
}

.methodology {
    padding: 100px 60px;
    background-color: var(--white);
}

.method-split {
    display: flex;
    gap: 60px;
}

.method-image {
    flex: 0 0 380px;
}

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

.method-content {
    flex: 1;
}

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

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
}

.step-number {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.form-section {
    padding: 90px 60px;
    background-color: var(--bg-light);
}

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

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

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

.booking-form {
    background-color: var(--white);
    padding: 45px;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 15px;
    background-color: var(--bg-cream);
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #1a3509;
}

.final-cta {
    padding: 100px 60px;
    background-color: var(--white);
}

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

.final-cta-content h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.final-cta-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.btn-final {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.btn-final:hover {
    background-color: #6f5738;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 60px 30px;
    margin-left: 220px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: background-color 0.3s;
}

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

.btn-cookie:hover {
    background-color: #1a3509;
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-header {
    padding: 80px 60px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3509 100%);
    text-align: center;
}

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

.header-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 80px 60px;
    background-color: var(--white);
}

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

.story-content h2 {
    font-size: 32px;
    margin: 45px 0 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.story-content h2:first-of-type {
    margin-top: 0;
}

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

.story-image-inline {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 2px;
}

.about-values-list {
    margin: 25px 0;
    padding-left: 25px;
}

.about-values-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.quote-block {
    margin: 40px 0;
    padding: 35px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.quote-block blockquote p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.quote-block cite {
    font-style: normal;
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: bold;
}

.cta-about {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3509 100%);
    text-align: center;
    border-radius: 2px;
}

.cta-about h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.btn-cta:hover {
    background-color: #6f5738;
}

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

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 90px;
    background-color: var(--white);
    padding: 50px;
}

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

.service-detail.featured-service {
    position: relative;
    background-color: #f4f0e8;
    border: 2px solid var(--secondary-color);
}

.featured-badge-large {
    position: absolute;
    top: -15px;
    left: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: bold;
}

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

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

.price-large {
    display: block;
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 25px;
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.service-includes {
    list-style: none;
    margin: 20px 0;
}

.service-includes li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-image {
    flex: 0 0 380px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.btn-service-detail {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    margin-top: 25px;
    transition: background-color 0.3s;
}

.btn-service-detail:hover {
    background-color: #1a3509;
}

.btn-service-detail.primary {
    background-color: var(--secondary-color);
}

.btn-service-detail.primary:hover {
    background-color: #6f5738;
}

.services-comparison {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

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

.comparison-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--white);
    padding: 35px;
    border-left: 3px solid var(--accent-color);
}

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

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

.services-cta {
    padding: 80px 60px;
    background-color: var(--white);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3509 100%);
    text-align: center;
    border-radius: 2px;
}

.cta-box h2 {
    font-size: 34px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-section {
    padding: 60px 60px;
    background-color: var(--white);
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.small-note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.map-caption {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-faq {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--white);
    padding: 30px;
}

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

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

.contact-cta-section {
    padding: 80px 60px;
    background-color: var(--white);
}

.cta-contact-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3509 100%);
    text-align: center;
}

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

.cta-contact-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #6f5738;
}

.visit-info {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

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

.visit-item {
    flex: 1;
    background-color: var(--white);
    padding: 35px;
}

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

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

.thanks-section {
    padding: 80px 60px;
    background-color: var(--white);
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-main {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-info-box {
    background-color: var(--bg-light);
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
}

.service-info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.selected-service {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: bold;
}

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

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

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

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-step {
    display: flex;
    gap: 25px;
}

.step-dot {
    width: 18px;
    height: 18px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.thanks-contact {
    background-color: var(--bg-light);
    padding: 30px;
    margin: 40px 0;
}

.thanks-contact h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thanks-contact p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.thanks-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a3509;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 2px;
    transition: background-color 0.3s, color 0.3s;
}

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

.thanks-explore {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.thanks-explore h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.explore-cards {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.explore-card {
    flex: 1;
    background-color: var(--white);
    overflow: hidden;
}

.explore-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.explore-card h3 {
    font-size: 22px;
    padding: 25px 25px 12px;
    color: var(--primary-color);
}

.explore-card p {
    padding: 0 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-explore {
    display: inline-block;
    margin: 0 25px 25px;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.btn-explore:hover {
    background-color: #1a3509;
}

.legal-page {
    padding: 60px 60px 80px;
    background-color: var(--white);
}

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

.legal-update {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-style: italic;
}

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

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

.legal-content h2:first-of-type {
    margin-top: 0;
}

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

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

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

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

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.cookies-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.cookies-table td {
    padding: 12px;
    font-size: 15px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 180px;
        padding: 20px 15px;
    }

    .main-content {
        margin-left: 180px;
    }

    .footer {
        margin-left: 180px;
    }

    .hero-overlay {
        padding: 40px;
    }

    .hero-text-box h1 {
        font-size: 40px;
    }

    .intro-columns,
    .story-split,
    .method-split {
        flex-direction: column;
    }

    .story-image,
    .method-image {
        flex: 1 1 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .main-content {
        margin-left: 0;
    }

    .footer {
        margin-left: 0;
    }

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

    .hero-overlay {
        position: relative;
        width: 100%;
        padding: 50px 30px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 350px;
    }

    .hero-text-box h1 {
        font-size: 32px;
    }

    .intro-columns,
    .services-preview,
    .story-section,
    .testimonials-magazine,
    .value-proposition,
    .regional-focus,
    .methodology,
    .form-section,
    .final-cta,
    .about-story,
    .services-detailed,
    .services-comparison,
    .services-cta,
    .contact-section,
    .contact-faq,
    .contact-cta-section,
    .visit-info,
    .thanks-section,
    .thanks-explore,
    .legal-page {
        padding: 50px 25px;
    }

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

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

    .service-image,
    .service-detail-image {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .services-grid-magazine,
    .testimonials-layout,
    .value-grid,
    .regions-magazine {
        flex-direction: column;
    }

    .footer-content,
    .contact-layout,
    .visit-grid,
    .explore-cards {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
    }

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