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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(40, 40, 40, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

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

.cookie-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-accept {
    background-color: #6b8e6f;
    color: white;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 18px 40px;
}

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

.brand {
    font-size: 26px;
    font-weight: 600;
    color: #3d5941;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2d2d2d;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b8e6f;
}

.ad-label {
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #e8ebe9;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

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

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

.hero-title {
    font-size: 62px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
}

.intro-narrative {
    padding: 100px 30px;
    background-color: #fff;
}

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

.opening-line {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #3d5941;
    font-weight: 500;
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 20px;
}

.image-story {
    padding: 80px 30px;
    background-color: #f5f7f5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inline-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 40px;
    object-fit: cover;
}

.story-text {
    max-width: 720px;
    text-align: left;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #3d5941;
    font-weight: 400;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.problem-reveal {
    padding: 100px 30px;
    background-color: #2d2d2d;
    color: #f5f5f5;
}

.reveal-box {
    max-width: 850px;
    margin: 0 auto;
}

.reveal-box h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #c4d7c5;
    font-weight: 400;
}

.reveal-box p {
    font-size: 19px;
    margin-bottom: 22px;
    line-height: 1.8;
}

.services-visual {
    padding: 100px 30px;
    background-color: #fff;
}

.section-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #3d5941;
    font-weight: 400;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 35px);
    min-width: 300px;
    max-width: 400px;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3d5941;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #6b8e6f;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background-color: #6b8e6f;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.testimonial-inline {
    padding: 80px 30px;
    background-color: #e8ebe9;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    color: #2d2d2d;
    border-left: 4px solid #6b8e6f;
    padding-left: 30px;
}

.testimonial-wrapper cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #555;
}

.trust-building {
    padding: 100px 30px;
    background-color: #fff;
}

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

.trust-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3d5941;
}

.trust-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.form-section {
    padding: 100px 30px;
    background-color: #f5f7f5;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #3d5941;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.order-form {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2d2d2d;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.service-selected {
    margin-bottom: 25px;
    padding: 15px;
    background-color: #e8ebe9;
    border-left: 4px solid #6b8e6f;
}

.service-selected p {
    font-size: 16px;
    color: #2d2d2d;
}

#selectedServiceName {
    font-weight: 600;
    color: #3d5941;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #6b8e6f;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

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

.final-testimonial {
    padding: 80px 30px;
    background-color: #fff;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #f9f9f9;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.site-footer {
    background-color: #2d2d2d;
    color: #d0d0d0;
    padding: 60px 30px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1 1 calc(33.333% - 50px);
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #c4d7c5;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.page-hero {
    margin-top: 80px;
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    background-color: #e8ebe9;
}

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

.page-hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.page-hero-overlay h1 {
    font-size: 52px;
    font-weight: 400;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
}

.about-narrative {
    padding: 100px 30px;
    background-color: #fff;
}

.narrative-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-paragraph {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #3d5941;
}

.story-block {
    display: flex;
    gap: 50px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.story-block img {
    flex: 1 1 400px;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

.story-block .story-text {
    flex: 1 1 400px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3d5941;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.philosophy-section {
    margin: 60px 0;
}

.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3d5941;
}

.philosophy-section p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

.value-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    padding: 30px;
    background-color: #f5f7f5;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3d5941;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    margin: 60px 0;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3d5941;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-quote {
    margin: 60px 0;
    padding: 40px;
    background-color: #e8ebe9;
    border-left: 5px solid #6b8e6f;
}

.about-quote p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #2d2d2d;
}

.about-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #555;
}

.services-intro {
    padding: 80px 30px;
    background-color: #f5f7f5;
}

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

.intro-text p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 40px 30px 100px;
    background-color: #fff;
}

.service-detail {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
}

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

.service-image-large {
    flex: 1 1 450px;
    background-color: #f5f7f5;
}

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

.service-info {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #3d5941;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #2d2d2d;
}

.service-details {
    margin-bottom: 25px;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #6b8e6f;
    margin-bottom: 25px;
}

.custom-section {
    padding: 80px 30px;
    background-color: #e8ebe9;
}

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

.custom-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #3d5941;
}

.custom-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    padding: 16px 35px;
    background-color: #6b8e6f;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #567159;
}

.contact-hero {
    margin-top: 80px;
    padding: 100px 30px;
    background-color: #f5f7f5;
}

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

.contact-intro h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #3d5941;
}

.contact-intro p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.contact-details {
    padding: 80px 30px;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-block {
    flex: 1 1 calc(33.333% - 50px);
    min-width: 280px;
}

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #3d5941;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.contact-block .note {
    font-size: 15px;
    color: #888;
    font-style: italic;
    margin-top: 15px;
}

.address-line {
    margin-bottom: 5px;
}

.visit-section {
    padding: 80px 30px;
    background-color: #f5f7f5;
}

.visit-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.visit-content img {
    flex: 1 1 450px;
    max-width: 550px;
    height: auto;
    object-fit: cover;
}

.visit-text {
    flex: 1 1 450px;
}

.visit-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3d5941;
}

.visit-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.directions-section {
    padding: 80px 30px;
    background-color: #fff;
}

.directions-content {
    max-width: 1000px;
    margin: 0 auto;
}

.directions-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #3d5941;
    text-align: center;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.direction-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    padding: 30px;
    background-color: #f5f7f5;
}

.direction-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3d5941;
}

.direction-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.faq-section {
    padding: 80px 30px;
    background-color: #f5f7f5;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #3d5941;
    text-align: center;
}

.faq-item {
    margin-bottom: 35px;
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid #6b8e6f;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #3d5941;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 30px;
    background-color: #f5f7f5;
}

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

.thanks-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 40px;
    object-fit: cover;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #3d5941;
}

.lead-text {
    font-size: 24px;
    margin-bottom: 30px;
    color: #555;
}

.confirmation-box {
    padding: 30px;
    background-color: #e8ebe9;
    margin-top: 30px;
}

.confirmation-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-display {
    font-weight: 600;
    color: #3d5941;
    font-size: 19px;
}

.next-steps {
    padding: 80px 30px;
    background-color: #fff;
}

.steps-content {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #3d5941;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #6b8e6f;
    color: white;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3d5941;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-testimonial {
    padding: 80px 30px;
    background-color: #e8ebe9;
}

.stay-connected {
    padding: 80px 30px;
    background-color: #fff;
}

.connected-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.connected-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #3d5941;
}

.connected-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.connected-content a {
    color: #6b8e6f;
    text-decoration: underline;
}

.connected-content a:hover {
    color: #567159;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 30px;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #3d5941;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #3d5941;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3d5941;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #2d2d2d;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background-color: #f5f7f5;
    color: #3d5941;
    font-weight: 600;
}

.cookie-table td {
    font-size: 15px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .opening-line {
        font-size: 22px;
    }

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

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

    .visit-content {
        flex-direction: column;
    }

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

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