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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97be5a;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f5;
    --bg-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: var(--bg-white);
}

.ad-disclosure {
    background: var(--accent-color);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

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

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

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

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background: var(--accent-color);
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background: #1e4420;
}

.intro-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.intro-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-highlight {
    padding: 100px 24px;
    background: var(--bg-light);
}

.services-highlight h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 1;
    background: var(--accent-color);
    min-height: 300px;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.select-service {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #7ea544;
}

.approach-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

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

.approach-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.values-section {
    padding: 100px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.value-item {
    flex: 1;
    padding: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

.form-section {
    padding: 100px 24px;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
}

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

.submit-button:hover {
    background: #1e4420;
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    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;
}

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

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

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

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

.cookie-accept:hover {
    background: #7ea544;
}

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

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

.page-hero {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 80px 24px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
}

.about-content {
    padding: 100px 24px;
    background: var(--bg-white);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.about-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 100px 24px;
    background: var(--bg-light);
}

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

.philosophy-image {
    flex: 1;
    background: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.values-detail {
    padding: 100px 24px;
    background: var(--bg-white);
}

.values-detail h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.team-approach {
    padding: 100px 24px;
    background: var(--bg-light);
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.team-image {
    flex: 1;
    background: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.commitment-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

.commitment-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.commitment-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.commitment-item {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.commitment-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.services-detail {
    padding: 80px 24px;
    background: var(--bg-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 16px 0 24px;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content ul {
    margin-bottom: 32px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.select-service-btn {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.service-detail-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.service-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-cta p {
    font-size: 17px;
    color: var(--text-light);
}

.service-cta a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-section {
    padding: 100px 24px;
    background: var(--bg-white);
}

.contact-info-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

.email-static {
    color: var(--text-light);
    cursor: default;
}

.contact-map {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-approach {
    padding: 100px 24px;
    background: var(--bg-light);
}

.contact-approach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.approach-step {
    flex: 1;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.contact-faq {
    padding: 100px 24px;
    background: var(--bg-white);
}

.contact-faq h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.faq-item {
    margin-bottom: 32px;
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.service-confirmation {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    text-align: left;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

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

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

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

.btn-primary:hover {
    background: #1e4420;
}

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

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

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

.legal-page h1 {
    max-width: 900px;
    margin: 0 auto 8px;
    font-size: 42px;
    color: var(--primary-color);
}

.legal-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 14px;
    color: var(--text-light);
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .about-split,
    .philosophy-split,
    .team-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .values-grid,
    .values-container,
    .commitment-grid,
    .approach-grid,
    .steps-grid {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 16px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}
