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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

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

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

.hero-fullwidth {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a3a2d;
}

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

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

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content-center h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
}

.story-section,
.insight-section,
.benefits-reveal,
.trust-section,
.services-pricing,
.form-section,
.disclaimer-section {
    padding: 4rem 2rem;
}

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

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

.story-section {
    background-color: #fafafa;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.story-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.insight-section {
    background-color: #fff;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.citation {
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #4a8c62;
}

.benefits-reveal {
    background-color: #f5f9f7;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d5f3f;
}

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

.benefit-item {
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid #2d5f3f;
    border-radius: 4px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d5f3f;
}

.benefit-item p {
    font-size: 1.125rem;
    line-height: 1.7;
}

.trust-section {
    background-color: #fff;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #2d5f3f;
}

.services-pricing {
    background-color: #fafafa;
}

.services-pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #666;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-block {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-block:hover {
    border-color: #2d5f3f;
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.1);
}

.service-block.featured {
    position: relative;
    border-color: #2d5f3f;
    background-color: #f5f9f7;
}

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

.service-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.service-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.btn-select {
    background-color: #2d5f3f;
    color: #fff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #4a8c62;
}

.form-section {
    background-color: #fff;
}

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

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #4a8c62;
}

.disclaimer-section {
    background-color: #fff8e1;
    border-top: 3px solid #ffc107;
}

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #555;
}

.footer {
    background-color: #1a3a2d;
    color: #fff;
    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;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #a8d5ba;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a8d5ba;
}

.references {
    font-size: 0.875rem;
    line-height: 1.8;
}

.references li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d5f3f;
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3a2d;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a8c62;
    color: #fff;
}

.btn-accept:hover {
    background-color: #5ca678;
}

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

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

.page-header {
    background-color: #f5f9f7;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2d5f3f;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
}

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

.about-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.philosophy-section {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

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

.philosophy-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.philosophy-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
}

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

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

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

.approach-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.approach-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #f0f0f0;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d5f3f;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid #e0e0e0;
}

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

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

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

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

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 1.125rem;
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5f3f;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.featured-service {
    position: relative;
}

.featured-label {
    display: inline-block;
    background-color: #2d5f3f;
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #f5f9f7;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn-cta {
    display: inline-block;
    background-color: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #4a8c62;
}

.contact-info {
    padding: 4rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

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

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

.email-display {
    color: #333;
    font-weight: 600;
}

.contact-image {
    flex: 1;
}

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

.contact-cta {
    padding: 4rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

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

.contact-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f5f9f7;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #2d5f3f;
    color: #fff;
    border-radius: 50%;
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-confirm {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d5f3f;
    margin-bottom: 2rem;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2d5f3f;
}

.next-steps {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.btn-back {
    display: inline-block;
    background-color: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #4a8c62;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #fff;
}

.legal-intro {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5f3f;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d5f3f;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 1rem;
    }

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

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

    .insight-grid,
    .about-split,
    .contact-layout,
    .service-detail,
    .testimonial-grid {
        flex-direction: column;
    }

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

    .philosophy-cards,
    .approach-grid {
        flex-direction: column;
    }

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

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