/* Reset and Base Styles */
* {
    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: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: #a8dadc;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2d5016;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3d6821;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

/* Navigation */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

.nav-brand a {
    color: inherit;
}

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

.nav-menu a {
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2d5016;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2d5016;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d5016;
    transition: all 0.3s ease;
}

/* Containers */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-text,
.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-full {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d5016 0%, #1a3010 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1490114538077-0a7f8cb49891?w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: -1;
}

.hero-overlay {
    z-index: 1;
    padding: 2rem;
}

.hero-full h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: #ffffff;
    color: #2d5016;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #2d5016;
}

.page-hero .lead {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Sections */
.story-opener {
    padding: 6rem 0;
    background: #ffffff;
}

.story-opener h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.story-opener p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.story-opener em {
    font-style: italic;
    color: #2d5016;
}

/* Insight Block */
.insight-block {
    padding: 6rem 0;
    background: #f8f9fa;
}

.insight-block h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-block p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

/* Problem Amplify */
.problem-amplify {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #ffffff;
}

.problem-amplify h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.problem-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d5016;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

/* Trust Story */
.trust-story {
    padding: 6rem 0;
    background: #ffffff;
}

.trust-story h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-story p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

/* Testimonials */
.testimonial-inline {
    padding: 5rem 0;
    background: #f0f4f8;
}

.testimonial-inline blockquote {
    background: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2d5016;
}

.testimonial-inline blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #2d5016;
}

/* Approach Reveal */
.approach-reveal {
    padding: 6rem 0;
    background: #ffffff;
}

.approach-reveal h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.approach-list {
    list-style: none;
    margin: 2rem 0;
}

.approach-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    padding-left: 2rem;
    position: relative;
}

.approach-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
    font-size: 1.3rem;
}

.approach-list strong {
    color: #2d5016;
}

.cta-inline {
    display: inline-block;
    background: #2d5016;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #3d6821;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

/* Benefits Visual */
.benefits-visual {
    padding: 6rem 0;
    background: #f8f9fa;
}

.benefits-visual h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.benefits-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2d5016;
}

.benefit-card p {
    padding: 0 1.5rem 2rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-soft {
    padding: 4rem 0;
    background: #fff4e6;
    text-align: center;
}

.urgency-text {
    font-size: 1.2rem;
    color: #d97706;
    font-weight: 600;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #2d5016;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d5016;
}

.service-item p {
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    display: inline-block;
    background: #2d5016;
    color: #ffffff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-section:hover {
    background: #3d6821;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.3);
}

/* Social Proof */
.social-proof {
    padding: 5rem 0;
    background: #f0f4f8;
}

.social-proof h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.testimonial-box {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-box p {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.testimonial-box cite {
    font-style: normal;
    font-weight: 600;
    color: #2d5016;
}

/* Final CTA Form */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d5016 0%, #1a3010 100%);
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.final-cta > .container-narrow > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    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: #2d5016;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3d6821;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-btn {
    display: block;
    background: #2d5016;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(45, 80, 22, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #3d6821;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.5);
}

/* About Page Specific */
.about-story {
    padding: 5rem 0;
    background: #ffffff;
}

.about-story h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
    line-height: 1.7;
}

.mission-block {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.mission-block h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2d5016;
}

.mission-block p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.values-section {
    padding: 6rem 0;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #2d5016;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.value-item p {
    color: #4a5568;
    line-height: 1.6;
}

.team-intro {
    padding: 5rem 0;
    background: #f0f4f8;
}

.team-intro h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #4a5568;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 0;
    background: #2d5016;
    text-align: center;
}

.cta-about h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #2d5016;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Page Specific */
.services-full {
    padding: 4rem 0;
    background: #ffffff;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e9ecef;
}

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

.service-detail:last-child {
    border-bottom: none;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-info {
    flex: 1;
}

.service-title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-title-price h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5016;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.service-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.cta-service {
    display: inline-block;
    background: #2d5016;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: #3d6821;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.cta-service.premium {
    background: linear-gradient(135deg, #2d5016 0%, #3d6821 100%);
}

.service-detail.featured {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #2d5016;
}

.services-guarantee {
    padding: 5rem 0;
    background: #f0f4f8;
    text-align: center;
}

.services-guarantee h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-guarantee p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Contact Page Specific */
.contact-info {
    padding: 5rem 0;
    background: #ffffff;
}

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

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.contact-block p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-block a {
    color: #2d5016;
    text-decoration: underline;
}

.contact-note {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-note h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1rem;
    text-align: center;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note a {
    color: #2d5016;
    text-decoration: underline;
}

.location-visual {
    padding: 5rem 0;
    background: #ffffff;
}

.location-image {
    margin-bottom: 2rem;
}

.location-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

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

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2d5016;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 2rem;
}

#service-confirmation {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #2d5016;
    font-weight: 600;
}

.next-steps {
    padding: 5rem 0;
    background: #ffffff;
}

.next-steps h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2d5016;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    color: #4a5568;
    line-height: 1.6;
}

.thanks-cta {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.thanks-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.link-button {
    display: inline-block;
    background: #2d5016;
    color: #ffffff;
    padding: 0.9rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.link-button:hover {
    background: #3d6821;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 5rem;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2d5016;
}

.legal-page h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.7rem;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page a {
    color: #2d5016;
    text-decoration: underline;
}

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

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e9ecef;
}

.cookie-table th {
    font-weight: 600;
    color: #2d5016;
}

.cookie-table td {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .hero-full h1 {
        font-size: 2.5rem;
    }

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

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

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

    .container-split.reverse {
        flex-direction: column;
    }

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

    .problem-grid,
    .benefits-cards,
    .values-grid,
    .testimonials-grid,
    .steps-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-full h1 {
        font-size: 2rem;
    }

    .story-opener h2,
    .benefits-visual h2,
    .services-preview h2 {
        font-size: 2rem;
    }

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