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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f2d;
    text-decoration: none;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-full {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    background-color: rgba(0,0,0,0.4);
    width: 100%;
}

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

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

.hero-lead {
    font-size: 1.3rem;
    font-weight: 300;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

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

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

.centered {
    text-align: center;
}

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

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

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

.split-image {
    flex: 1;
    background-color: #e8f4e8;
}

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.insight-block {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    object-fit: cover;
}

.trust-markers {
    padding: 5rem 2rem;
    background-color: #2c5f2d;
    color: #fff;
}

.wide-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.marker-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.marker-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.marker-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonials-flow {
    padding: 5rem 2rem;
    background-color: #fff;
}

.testimonial-item {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f2d;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.3rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #fff;
}

.section-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5f2d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8f4e8;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c5f2d;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5f2d;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.select-service-btn {
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 1.5rem 1.5rem;
    border-radius: 4px;
}

.select-service-btn:hover {
    background-color: #1f4420;
}

.cta-form-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

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

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f2d;
}

.submit-btn {
    width: 100%;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1f4420;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff5e6;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.8;
}

.main-footer {
    background-color: #2c5f2d;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #333;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

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

.cookie-btn.reject {
    background-color: #ddd;
    color: #333;
}

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

.page-hero {
    background-color: #2c5f2d;
    color: #fff;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

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

.hero-content-center p {
    font-size: 1.3rem;
    font-weight: 300;
}

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

.mission-block {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.approach-list {
    list-style: none;
    margin-top: 1.5rem;
}

.approach-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #555;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

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

.team-philosophy {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.service-detail-card {
    max-width: 1200px;
    margin: 3rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8f4e8;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

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

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

.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 1.5rem;
}

.cta-section-simple {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

.cta-link-btn {
    display: inline-block;
    background-color: #2c5f2d;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.cta-link-btn:hover {
    background-color: #1f4420;
}

.contact-info-section {
    padding: 3rem 2rem;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

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

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

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

.email-display {
    color: #2c5f2d;
    font-weight: 500;
}

.contact-image {
    flex: 1;
    background-color: #e8f4e8;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-note {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
}

.thanks-section {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.service-confirmation {
    font-weight: bold;
    color: #2c5f2d;
    font-size: 1.2rem;
    margin: 2rem 0;
}

.thanks-next-steps {
    text-align: left;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #555;
}

.thanks-next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s;
}

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

.btn-secondary {
    background-color: #ddd;
    color: #333;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.legal-page {
    padding: 3rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-container li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

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

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

    .split-layout,
    .split-layout.reverse,
    .contact-layout,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .marker-grid,
    .footer-content,
    .cookie-content {
        flex-direction: column;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}