* {
    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: #2d2d2d;
    background-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: #f8f9f7;
}

.hero-text-content {
    max-width: 550px;
}

.hero-text-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    background-color: #d4d9d6;
}

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

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

.cta-primary:hover {
    background-color: #1f4426;
    cursor: pointer;
}

.intro-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.intro-image-side {
    flex: 1;
    background-color: #e8ebe9;
}

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

.intro-content-side {
    flex: 1;
}

.intro-content-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content-side p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.services-showcase {
    padding: 5rem 5%;
    background-color: #f8f9f7;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.service-row {
    display: flex;
    max-width: 1300px;
    margin: 0 auto 3rem;
    gap: 3rem;
    align-items: center;
}

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 2rem;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2a5934;
}

.service-content-left p,
.service-content-right p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2a5934;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: #2a5934;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #d4d9d6;
}

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

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-header p {
    font-size: 1rem;
    color: #5a5a5a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d2d2d;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    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: #2a5934;
}

.btn-submit {
    background-color: #2a5934;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-choose {
    padding: 5rem 5%;
    background-color: #f0f2f0;
}

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

.why-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.why-grid {
    display: flex;
    gap: 3rem;
}

.why-item {
    flex: 1;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.why-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2a5934;
}

.why-item p {
    color: #4a4a4a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 1.5rem 5%;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #2a5934;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #ffffff;
    color: #2d2d2d;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto 2rem;
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #3a3a3a;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.about-hero,
.services-hero,
.contact-hero {
    background-color: #2a5934;
    padding: 5rem 5%;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.about-story {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.story-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.story-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

.about-approach {
    padding: 5rem 5%;
    background-color: #f8f9f7;
}

.approach-content {
    max-width: 1300px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.approach-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-left {
    flex: 1;
    background-color: #e8ebe9;
}

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

.approach-right {
    flex: 1;
}

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

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

.approach-item p {
    color: #4a4a4a;
}

.about-values {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    padding: 2rem;
    background-color: #f8f9f7;
    border-radius: 8px;
}

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

.value-card p {
    color: #4a4a4a;
}

.about-team {
    padding: 5rem 5%;
    background-color: #f8f9f7;
}

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

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.team-image-container {
    background-color: #d4d9d6;
}

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

.cta-section {
    padding: 5rem 5%;
    background-color: #2a5934;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2a5934;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

.services-detailed {
    padding: 3rem 5%;
    background-color: #ffffff;
}

.service-detail-row {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
    align-items: center;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #4a4a4a;
}

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

.service-pricing-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #5a5a5a;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a5934;
}

.services-cta {
    padding: 5rem 5%;
    background-color: #f8f9f7;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.contact-main {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-info-block {
    margin-bottom: 2rem;
}

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2a5934;
}

.contact-info-block p {
    color: #4a4a4a;
    line-height: 1.8;
}

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

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

.contact-map-placeholder {
    padding: 5rem 5%;
    background-color: #f8f9f7;
    text-align: center;
}

.map-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.map-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.thanks-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2a5934;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.thanks-service-info {
    background-color: #f8f9f7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: #2a5934;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

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

.steps-list {
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: #4a4a4a;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2a5934;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background-color: #2a5934;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #f0f2f0;
    color: #2a5934;
}

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

.legal-page {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a5934;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2a5934;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.legal-content a {
    color: #2a5934;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .intro-split,
    .story-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
    }

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

    .why-grid,
    .values-grid {
        flex-direction: column;
    }

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

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

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