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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8c2e;
    --accent-color: #f4a300;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

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

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(244, 163, 0, 0.4);
    transition: transform 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 163, 0, 0.5);
}

.hero-overlay {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(90, 140, 46, 0.8)),
                url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600') center/cover;
    z-index: -1;
}

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

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn-hero:hover {
    transform: scale(1.05);
}

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

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

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

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

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

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

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

.text-block p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

.insight-card p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.trust-builder {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: white;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.trust-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.stats-inline {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    border-radius: 8px;
}

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

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

.testimonial-block {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.testimonial-block:last-child {
    border-bottom: none;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.visual-showcase {
    padding: 0;
}

.showcase-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1 1 33.333%;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem;
}

.showcase-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.showcase-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.benefits-deep {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

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

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

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

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

.benefit-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.urgency-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.urgency-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-block p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0;
    color: var(--accent-color);
}

.centered {
    text-align: center;
}

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

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

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

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

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

.guarantee-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.guarantee-item {
    flex: 1 1 300px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.guarantee-item p {
    color: var(--text-light);
}

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

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

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

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

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

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

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

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

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

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-cookie:hover {
    opacity: 0.9;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

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

.about-intro {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.intro-text {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-light);
}

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

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

.mission-text {
    font-size: 1.4rem;
    line-height: 1.8;
}

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

.values-text {
    flex: 1;
}

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

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.values-image {
    flex: 1;
}

.values-image img {
    border-radius: 8px;
}

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

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

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

.team-member {
    flex: 1 1 300px;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

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

.team-role {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-member p {
    color: var(--text-light);
}

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

.achievements-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.achievement-item {
    flex: 1 1 200px;
    text-align: center;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-light);
}

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

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

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

.services-intro {
    padding: 3rem 2rem;
    background: var(--bg-white);
}

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

.service-detail-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 3rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-detail-card.highlighted {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 3rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.service-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

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

.service-includes {
    list-style: none;
    margin: 1rem 0;
}

.service-includes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

.service-benefits {
    background: rgba(90, 140, 46, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

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

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-save {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

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

.comparison-table {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.comparison-row {
    display: flex;
}

.comparison-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
    background: var(--bg-light);
}

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

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

.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 h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

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

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

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

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.thanks-message {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: center;
}

.thanks-next {
    margin: 4rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

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

.step-content p {
    color: var(--text-light);
}

.thanks-info {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

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

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

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

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

.thanks-testimonial {
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
}

.thanks-contact {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

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

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

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.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 thead {
    background: var(--primary-color);
    color: white;
}

.cookie-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.cookie-reset {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

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

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .showcase-item {
        flex: 1 1 100%;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .stats-inline {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 600px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .text-block h2 {
        font-size: 1.8rem;
    }

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

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

    .page-hero-content h1 {
        font-size: 2rem;
    }
}
