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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

.btn-cookie-accept {
    background: #2c5f2d;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #1e4620;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

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

.sticky-btn {
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.4);
    transition: all 0.3s ease;
    display: block;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(44, 95, 45, 0.5);
}

.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text-box {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 2rem;
}

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

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

.hero-cta {
    display: inline-block;
    background: #fff;
    color: #2c5f2d;
    padding: 1rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.intro-hook {
    padding: 5rem 2rem;
    background: #fff;
}

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

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.problem-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.split-image {
    flex: 1;
}

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

.inline-cta-wrapper {
    margin-top: 2rem;
}

.inline-cta-link {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.inline-cta-link:hover {
    opacity: 0.7;
}

.story-section {
    padding: 5rem 2rem;
    background: #fff;
}

.insight-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.full-width-image {
    width: 100%;
    height: 100%;
}

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

.overlay-text-box {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.overlay-text-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.overlay-text-box p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

.trust-builder {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.icon-placeholder {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.trust-card p {
    font-size: 1rem;
    color: #5a5a5a;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: #2c5f2d;
    color: #fff;
}

.testimonial-inline blockquote {
    border-left: none;
}

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

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.variety-showcase {
    padding: 5rem 2rem;
    background: #fff;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #5a5a5a;
}

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

.showcase-item {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.showcase-item img {
    width: 100%;
    transition: transform 0.4s ease;
}

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

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

.showcase-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.showcase-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.benefit-reveal {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.alternating-benefits {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.benefit-block.left .benefit-text {
    order: 1;
}

.benefit-block.left .benefit-image {
    order: 2;
}

.benefit-block.right .benefit-image {
    order: 1;
}

.benefit-block.right .benefit-text {
    order: 2;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.benefit-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.benefit-image {
    flex: 1;
}

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

.social-proof {
    padding: 5rem 2rem;
    background: #fff;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-card p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #3a3a3a;
    font-style: italic;
}

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

.urgency-subtle {
    padding: 3rem 2rem;
    background: #fff9e6;
}

.centered {
    text-align: center;
}

.urgency-subtle h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.urgency-subtle p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.pricing-reveal {
    padding: 5rem 2rem;
    background: #fff;
}

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

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #2c5f2d;
    background: #fff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2c5f2d;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-desc {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓ ";
    color: #2c5f2d;
    font-weight: bold;
    margin-right: 0.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1e4620;
}

.form-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #6a6a6a;
    margin-bottom: 2.5rem;
}

.order-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: #2a2a2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e5e5e5;
    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: #2c5f2d;
}

.btn-submit {
    padding: 1.2rem;
    background: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    color: #fff;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: #fff;
    color: #2c5f2d;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #88c98d;
}

.footer-column p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #88c98d;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

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

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

.about-intro {
    padding: 5rem 2rem;
    background: #fff;
}

.values-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.value-card p {
    font-size: 1rem;
    color: #5a5a5a;
}

.team-section {
    padding: 5rem 2rem;
    background: #fff;
}

.process-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f2d;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 0.95rem;
    color: #5a5a5a;
}

.cta-section {
    padding: 4rem 2rem;
    background: #fff;
}

.cta-button {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1e4620;
    transform: translateY(-2px);
}

.services-intro {
    padding: 4rem 2rem;
    background: #fff;
}

.services-detailed {
    background: #f9f9f9;
}

.service-block {
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.service-image {
    flex: 1;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.service-features-list h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-features-list ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.service-features-list li:before {
    content: "• ";
    color: #2c5f2d;
    font-weight: bold;
    margin-right: 0.5rem;
}

.price-display {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-from {
    font-size: 1rem;
    color: #6a6a6a;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c5f2d;
}

.btn-order {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: #1e4620;
    transform: translateY(-2px);
}

.contact-section {
    padding: 5rem 2rem;
    background: #fff;
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-item a {
    color: #2c5f2d;
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    background: #f5f5f5;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #6a6a6a;
}

.faq-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

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

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.legal-content {
    padding: 5rem 2rem;
    background: #fff;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content strong {
    color: #1a1a1a;
}

.thanks-hero {
    background: #fff;
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
}

.thanks-container {
    max-width: 700px;
    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: 1.5rem;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.service-confirmation {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #2c5f2d;
    font-weight: 600;
}

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

.btn-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5f2d;
    padding: 1rem 2rem;
    border: 2px solid #2c5f2d;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

.next-steps {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

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

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

.step-item {
    flex: 1;
    min-width: 240px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    opacity: 1;
}

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

.step-item p {
    font-size: 0.95rem;
    color: #5a5a5a;
}

.contact-info-section {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.contact-info-section a {
    color: #2c5f2d;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

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

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

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

    .benefit-block {
        flex-direction: column;
        gap: 2rem;
    }

    .benefit-block.left .benefit-text,
    .benefit-block.right .benefit-text {
        order: 2;
    }

    .benefit-block.left .benefit-image,
    .benefit-block.right .benefit-image {
        order: 1;
    }

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

    .service-block.reverse {
        flex-direction: column;
    }

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

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

    .overlay-text-box {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
        padding: 1.5rem;
    }
}
