:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2d2d2d;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 4px;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

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

.hero-visual {
    margin-top: 70px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 85vh;
    background-color: #2d3e40;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.8) 0%, rgba(45, 45, 45, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-wrapper {
    max-width: 800px;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(151, 191, 13, 0.4);
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--text-light);
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.narrow-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.narrow-text a {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.visual-insight {
    padding: 0;
    background: #fafafa;
}

.split-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.visual-left {
    flex: 1 1 50%;
    min-height: 500px;
    background-color: #d0d0d0;
}

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

.content-right {
    flex: 1 1 50%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--text-light);
}

.content-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-right p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.trust-building {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.centered-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.centered-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.centered-block p {
    font-size: 1.15rem;
    color: #555;
}

.centered-block a {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.stat-card {
    flex: 1 1 250px;
    padding: 2.5rem 2rem;
    background: var(--text-light);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

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

.stat-card p {
    font-size: 1rem;
    color: #666;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2.5rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

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

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.services-reveal {
    padding: 5rem 2rem;
    background: var(--text-light);
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.15rem;
    color: #666;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 280px;
    max-width: 380px;
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #d0d0d0;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-card > p {
    padding: 0 1.5rem 1rem;
    font-size: 1rem;
    color: #555;
}

.service-features {
    padding: 0 1.5rem 1rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background: #234d23;
    transform: scale(1.02);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: #87aa0c;
    transform: translateY(-2px);
}

.final-cta {
    padding: 0;
}

.cta-overlay-section {
    position: relative;
    min-height: 500px;
    background-color: #2d3e40;
}

.cta-overlay-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cta-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 45, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.cta-text-overlay h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-text-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-light);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.footer-column p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-references h5 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-references a {
    color: #88c0d0;
    text-decoration: underline;
    cursor: pointer;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.15);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 45, 45, 0.98);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-accept {
    background: var(--success-color);
    color: var(--text-light);
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.btn-reject {
    background: #6c757d;
    color: var(--text-light);
}

.btn-reject:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
}

.page-hero-small {
    margin-top: 70px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4620 100%);
    color: var(--text-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-story {
    padding: 5rem 2rem;
    background: var(--text-light);
}

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

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-visual-section {
    padding: 0;
    background: var(--bg-light);
}

.visual-content-split {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.visual-image {
    flex: 1 1 50%;
    min-height: 500px;
    background-color: #d0d0d0;
}

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

.visual-text {
    flex: 1 1 50%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visual-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--text-light);
}

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

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

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

.value-item {
    flex: 1 1 250px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

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

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-step {
    flex: 1 1 220px;
    padding: 2rem 1.5rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.approach-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cta-section-inline {
    padding: 4rem 2rem;
    background: var(--primary-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(151, 191, 13, 0.4);
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.1rem;
    color: #666;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid var(--secondary-color);
}

.service-badge-large {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    z-index: 10;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    background-color: #d0d0d0;
}

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

.service-detail-content {
    padding: 2.5rem 3rem;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.price-period {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

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

.service-includes li {
    padding: 0.6rem 0;
    font-size: 1rem;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.contact-section {
    padding: 5rem 2rem;
    background: var(--text-light);
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1 1 400px;
}

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

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

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

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #777;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1 1 400px;
    min-height: 400px;
    background-color: #d0d0d0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: var(--text-light);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-container h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.7;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 2rem;
    padding: 0;
}

.legal-container li {
    margin-bottom: 0.6rem;
    color: #444;
    line-height: 1.6;
}

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

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

.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--text-light);
    border: 1px solid var(--border-color);
}

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

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

.cookie-table td {
    color: #555;
}

.thanks-section {
    margin-top: 70px;
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.thanks-message {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--success-color);
    font-weight: 600;
    text-align: center;
}

.service-confirmation {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.thanks-message h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    color: var(--primary-color);
}

.next-steps {
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
}

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

.step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.thanks-note {
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(44, 95, 45, 0.4);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.thanks-testimonial {
    padding: 4rem 2rem;
    background: var(--primary-color);
}

.testimonial-highlight {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

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

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

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

    .visual-left,
    .content-right,
    .visual-image,
    .visual-text {
        flex: 1 1 100%;
    }

    .split-visual,
    .visual-content-split {
        flex-direction: column;
    }

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

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

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

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

    .approach-steps {
        flex-direction: column;
    }

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