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

:root {
    --primary-color: #2d5a3f;
    --secondary-color: #5a8169;
    --accent-color: #8fac9d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --bg-light: #f8f9f7;
    --bg-dark: #2a3a32;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-disclosure {
    background-color: var(--bg-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.main-nav {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.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-section {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    background-color: var(--accent-color);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background-color: var(--bg-dark);
}

.intro-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
}

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

.dark-bg {
    background-color: var(--bg-dark);
    color: var(--white);
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.9);
}

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

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.value-image {
    flex: 1;
    background-color: var(--accent-color);
}

.value-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    min-width: 280px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: var(--accent-color);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    margin: 0 24px 16px;
    color: var(--text-light);
    font-size: 16px;
}

.service-card .price {
    display: block;
    margin: 0 24px 24px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.link-button {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 2px solid var(--primary-color);
    transition: opacity 0.3s;
}

.link-button:hover {
    opacity: 0.7;
}

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

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

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

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

.step {
    flex: 1;
    min-width: 240px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 16px;
}

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

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

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-light);
}

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

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

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

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
}

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

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

.submit-button:hover {
    background-color: var(--bg-dark);
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 24px 20px;
    z-index: 1000;
    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: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

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

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

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

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

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

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

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

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

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

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

.philosophy-section {
    padding: 80px 20px;
}

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

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

.philosophy-item {
    flex: 1;
    min-width: 240px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.6;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
}

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

.team-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

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

.approach-image {
    flex: 1;
    background-color: var(--accent-color);
}

.approach-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 80px 20px;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

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

.approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.approach-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.services-full {
    padding: 60px 20px;
    background-color: var(--white);
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-includes {
    list-style: none;
    margin: 24px 0;
}

.service-includes li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: var(--bg-dark);
}

.pricing-notes {
    padding: 60px 20px;
}

.notes-container {
    max-width: 800px;
    margin: 0 auto;
}

.notes-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
}

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

.notes-container ul {
    margin: 20px 0 20px 24px;
}

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

.final-cta {
    padding: 80px 20px;
    background-color: var(--bg-dark);
    color: var(--white);
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--white);
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-main {
    padding: 60px 20px;
    background-color: var(--white);
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

.contact-block {
    margin-bottom: 32px;
}

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

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
    background-color: var(--accent-color);
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.faq-section {
    padding: 80px 20px;
}

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

.faq-container h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.faq-item {
    margin-bottom: 32px;
}

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

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

.location-section {
    padding: 60px 20px;
    background-color: var(--white);
}

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

.location-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
}

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

.contact-cta {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--white);
}

.thanks-section {
    padding: 80px 20px;
    background-color: var(--white);
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

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

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.next-steps li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.thanks-info {
    padding: 60px 20px;
}

.info-container {
    max-width: 1100px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.info-container > p {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.info-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    padding: 32px;
    background-color: var(--white);
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
}

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

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

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

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-container ul,
.legal-container ol {
    margin: 16px 0 16px 24px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .value-content,
    .story-container,
    .team-approach,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1;
    }

    .process-steps,
    .testimonials-wrapper {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}