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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fef3e2;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

.floating-nav {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a2f1c;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.95;
}

.story-hook {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

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

.narrow-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 22px;
    color: var(--text-light);
    line-height: 1.7;
}

.problem-visual {
    background-color: var(--bg-light);
    padding: 90px 30px;
}

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

.split-content {
    flex: 1;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.split-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.insight-block {
    padding: 100px 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.centered-insight h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.centered-insight p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.process-reveal {
    padding: 90px 30px;
    background-color: var(--bg-white);
}

.process-reveal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.process-card {
    flex: 1 1 calc(50% - 20px);
    padding: 40px 35px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    opacity: 0.7;
}

.process-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.testimonial-inline {
    padding: 100px 30px;
    background-color: var(--bg-light);
}

.testimonial-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.testimonial-content img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--border-color);
}

.testimonial-text {
    flex: 1;
}

.testimonial-text blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-text cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.benefit-cascade {
    padding: 90px 30px;
    background-color: var(--bg-white);
}

.benefit-cascade h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 55px;
    color: var(--text-dark);
}

.benefit-columns {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 20px);
    padding: 30px;
    background-color: var(--bg-light);
}

.benefit-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.services-preview {
    padding: 90px 30px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-cascade {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 30px;
}

.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-block img {
    width: 350px;
    height: 240px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.select-service {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #e55a2b;
}

.form-section {
    padding: 90px 30px;
    background-color: var(--bg-white);
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 18px;
    text-align: center;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-row {
    margin-bottom: 22px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    padding: 18px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.submit-btn:hover {
    background-color: #234d24;
}

.trust-markers {
    padding: 70px 30px;
    background-color: var(--bg-light);
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.final-cta {
    padding: 100px 30px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    color: var(--bg-white);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    padding: 18px 42px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e55a2b;
}

.disclaimer-section {
    padding: 50px 30px;
    background-color: #fef9f3;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #6b5d4f;
    text-align: center;
}

.site-footer {
    background-color: #1a2f1c;
    color: var(--bg-white);
    padding: 60px 30px 30px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--secondary-color);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.75;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: var(--bg-white);
    padding: 25px 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background-color: #234d24;
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.page-hero {
    padding: 80px 30px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.story-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.values-section {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 55px;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 35px;
    background-color: var(--bg-white);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.team-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.team-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.team-content img {
    width: 450px;
    height: 320px;
    object-fit: cover;
    background-color: var(--border-color);
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.process-transparency {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.process-transparency h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.process-transparency > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.workshop-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--border-color);
}

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

.cta-about {
    padding: 80px 30px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-about h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 30px;
}

.services-detailed {
    padding: 60px 30px;
    background-color: var(--bg-white);
}

.service-full {
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background-color: var(--bg-white);
}

.service-header h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-full img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-details {
    padding: 40px;
}

.service-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

.service-details h3:first-child {
    margin-top: 0;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-details ul {
    margin: 15px 0 20px 20px;
}

.service-details ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.additional-services {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.additional-services h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.additional-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.additional-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: var(--bg-white);
}

.additional-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.additional-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.add-price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-content {
    padding: 60px 30px;
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.note {
    font-size: 14px;
    font-style: italic;
    color: #888;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
    background-color: var(--border-color);
}

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

.map-caption {
    padding: 15px;
    background-color: var(--bg-light);
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.faq-section {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.legal-page {
    padding: 60px 30px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.last-updated {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 20px 25px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.thanks-page {
    padding: 100px 30px;
    background-color: var(--bg-light);
    min-height: 70vh;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-white);
    padding: 60px 40px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step p {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #234d24;
    border-color: #234d24;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .split-layout,
    .story-layout,
    .testimonial-content,
    .team-content,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-block img {
        width: 100%;
    }

    .process-card,
    .benefit-item,
    .value-card,
    .additional-item {
        flex: 1 1 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
    }
}