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

:root {
    --primary-color: #2d5016;
    --secondary-color: #6b8e23;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

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

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

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

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

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-narrow {
    max-width: 720px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.hero-text-narrow h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.story-intro {
    background-color: var(--bg-light);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.emphasis-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.insight-section {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 2rem;
}

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

.insight-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.insight-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-deep {
    background-color: var(--bg-light);
}

.story-deep h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.quote-text {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.cta-inline {
    background-color: var(--accent-color);
    padding: 3rem 2rem;
}

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

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.trust-builders {
    background-color: var(--bg-white);
}

.trust-builders h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
}

.reason-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.testimonials-flow {
    background-color: var(--bg-light);
}

.testimonials-flow h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.testimonial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.benefits-reveal {
    background-color: var(--bg-white);
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.benefits-layout {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-major {
    flex: 1;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 6px;
}

.benefit-major h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefits-secondary {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefits-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

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

.investment-options h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--text-light);
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.option-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.option-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.option-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex: 1;
}

.option-tag {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.option-desc {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.option-details {
    padding: 0 2rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.detail-item {
    font-size: 0.95rem;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.option-price {
    padding: 0 2rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-select-service {
    margin: 0 2rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.urgency-section {
    background-color: var(--bg-white);
}

.urgency-box {
    background-color: #fff9e6;
    border-left: 5px solid var(--accent-color);
    padding: 2.5rem;
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.urgency-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.highlight-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.investment-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.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.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 1.2rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 99;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-sticky:hover {
    background-color: #c9a332;
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #cccccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-accept:hover {
    background-color: #5a7a1e;
}

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

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

.page-header {
    background-color: var(--bg-light);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story {
    background-color: var(--bg-white);
}

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

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.mission-box h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.values-section {
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 6px;
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-section {
    background-color: var(--bg-light);
}

.process-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.process-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-section {
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
}

.team-member h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.impact-section {
    background-color: var(--bg-light);
}

.impact-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.cta-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.services-intro {
    background-color: var(--bg-white);
}

.services-list {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
}

.service-detailed {
    background-color: var(--bg-white);
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.service-info {
    padding: 3rem;
}

.service-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-location {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-highlights {
    margin-bottom: 2rem;
}

.service-highlights h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-highlights ul {
    list-style: none;
    padding-left: 0;
}

.service-highlights li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

.service-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.service-financial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.financial-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.financial-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.financial-label {
    font-weight: 600;
    color: var(--text-dark);
}

.financial-value {
    font-weight: 700;
    color: var(--secondary-color);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.faq-section {
    background-color: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-info {
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 6px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

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

.contact-map {
    background-color: var(--bg-light);
}

.contact-map h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-placeholder {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 4rem 2rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.contact-cta {
    background-color: var(--bg-white);
}

.legal-content {
    background-color: var(--bg-white);
}

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

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

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

.thanks-section {
    background-color: var(--bg-light);
    padding: 5rem 2rem;
    min-height: 60vh;
}

.thanks-box {
    background-color: var(--bg-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.selected-service {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
}

.thanks-list {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    list-style: none;
}

.thanks-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.thanks-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.thanks-note {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-note a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .hero-text-narrow h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

    .sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .content-narrow,
    .content-wide {
        padding: 3rem 1.5rem;
    }

    .investment-form {
        padding: 2rem 1.5rem;
    }

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

    .page-header h1 {
        font-size: 2.2rem;
    }
}