:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1e4029;
    --secondary-color: #6b8e76;
    --accent-color: #8faa96;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e5e2;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-dark);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.875rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.25rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 75vh;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem 4rem;
    background-color: var(--bg-light);
}

.hero-text {
    max-width: 580px;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.75rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: stretch;
}

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

.cta-primary,
.cta-secondary,
.cta-accent {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.cta-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.cta-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-accent {
    background-color: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
}

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

.btn-outline {
    display: inline-block;
    padding: 1rem 2.25rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-offset {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.intro-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.intro-image {
    flex: 0 0 45%;
}

.intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-statement {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.problem-statement h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.5rem;
}

.problem-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.services-intro-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.services-intro-text {
    flex: 1;
}

.services-intro-text h2 {
    margin-bottom: 1.5rem;
}

.services-intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services-quick-list {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-quick-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-quick-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.price-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.methodology {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.methodology h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.method-step {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.method-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.case-evidence {
    padding: 0;
}

.evidence-split {
    display: flex;
    min-height: 600px;
}

.evidence-visual {
    flex: 0 0 50%;
}

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

.evidence-content {
    flex: 1;
    padding: 5rem 4rem;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evidence-content h2 {
    margin-bottom: 2.5rem;
}

blockquote {
    margin: 0 0 2.5rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

cite {
    display: block;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.value-proposition {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.value-proposition h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.value-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.engagement-form {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    color: white;
    margin-bottom: 1rem;
}

.form-intro p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.urgency-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.urgency-section h2 {
    margin-bottom: 1.5rem;
}

.urgency-section p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.urgency-section .cta-accent {
    margin-top: 2rem;
    font-size: 1.15rem;
}

.site-footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 1.25rem;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-reject:hover {
    border-color: rgba(255,255,255,0.6);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.header-content h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.header-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.services-detailed {
    padding: 5rem 2rem;
}

.service-detail-card {
    margin-bottom: 5rem;
}

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

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

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-pricing .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-pricing .price-note {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 1.5rem;
}

.services-cta p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.services-cta .cta-primary {
    margin-top: 2rem;
}

.about-story {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.story-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-image {
    flex: 0 0 45%;
}

.story-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.expertise-section h2 {
    margin-bottom: 3rem;
}

.expertise-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.expertise-content {
    flex: 1;
}

.expertise-content > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.expertise-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.expertise-image {
    flex: 0 0 400px;
}

.expertise-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.credentials {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.credentials h2 {
    margin-bottom: 2rem;
}

.credentials p {
    font-size: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.credentials-list {
    list-style: none;
    max-width: 900px;
    margin: 2rem auto;
}

.credentials-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
}

.credentials-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.geography-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.geography-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.geography-text {
    flex: 1;
}

.geography-text h2 {
    margin-bottom: 1.5rem;
}

.geography-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.geography-image {
    flex: 0 0 45%;
}

.geography-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.approach-section {
    padding: 6rem 2rem;
    background-color: var(--bg-light);
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.approach-section > .content-wrapper > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.approach-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-step {
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.approach-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.closing-statement {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
    text-align: center;
}

.closing-statement h2 {
    margin-bottom: 2rem;
}

.closing-statement p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.closing-statement .cta-primary {
    margin-top: 2rem;
    font-size: 1.15rem;
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 3rem 0;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item p {
    line-height: 1.7;
}

.contact-item .note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-expectations {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-expectations h3 {
    margin-bottom: 1.25rem;
}

.contact-expectations ol {
    list-style-position: inside;
    margin: 0;
}

.contact-expectations li {
    padding: 0.5rem 0;
    margin: 0;
}

.contact-form-wrapper {
    flex: 0 0 500px;
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-form-page {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.form-consent {
    margin-bottom: 1.75rem;
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-additional {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.contact-additional h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

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

.thanks-content {
    background-color: white;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.thanks-details {
    text-align: left;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-next-steps {
    text-align: left;
    margin: 2.5rem 0;
}

.thanks-next-steps h2 {
    margin-bottom: 1.25rem;
}

.thanks-next-steps ol {
    list-style-position: inside;
    margin: 0;
}

.thanks-next-steps li {
    padding: 0.5rem 0;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-contact-info {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.thanks-resources {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.thanks-resources h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.thanks-resources > .content-wrapper > p {
    text-align: center;
    margin-bottom: 3rem;
}

.resource-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.resource-card {
    flex: 1;
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 5rem 2rem;
}

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

.legal-container h1 {
    margin-bottom: 1rem;
}

.updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-position: outside;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

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

.legal-content a:hover {
    color: var(--primary-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-medium);
}

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

    .hero-content,
    .evidence-content {
        padding: 4rem 2rem;
    }

    .intro-container,
    .story-layout,
    .geography-layout,
    .services-intro-layout,
    .expertise-layout,
    .service-detail-content {
        flex-direction: column;
        gap: 3rem;
    }

    .intro-image,
    .story-image,
    .geography-image,
    .service-detail-image,
    .expertise-image {
        flex: 1;
    }

    .services-quick-list {
        flex: 1;
    }

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0 2rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    .problem-grid,
    .value-cards,
    .values-grid,
    .method-flow,
    .resource-cards,
    .faq-grid {
        flex-direction: column;
    }

    .method-step {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper,
    .nav-container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .contact-form,
    .contact-form-page {
        padding: 1.5rem;
    }
}