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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2a5d3f;
    text-decoration: none;
}

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

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

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

.hero-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 80px 24px;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: #d4e9df;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: #2a5d3f;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.intro-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.intro-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.intro-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #d4e9df;
}

.intro-card h3 {
    padding: 24px 24px 12px 24px;
    font-size: 22px;
    color: #2a5d3f;
}

.intro-card p {
    padding: 0 24px 24px 24px;
    color: #4a5568;
}

.services-highlight {
    padding: 80px 24px;
    background-color: #fafbfc;
}

.services-highlight h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
    font-size: 18px;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    background-color: #d4e9df;
}

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

.service-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2a5d3f;
}

.service-info p {
    color: #4a5568;
    margin-bottom: 16px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #2a5d3f;
    margin-bottom: 16px;
}

.select-service {
    background-color: #2a5d3f;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e9 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-container > p {
    color: #4a5568;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background-color: #2a5d3f;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.trust-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2a5d3f;
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a5d3f;
}

.trust-card p {
    color: #4a5568;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 24px 24px 24px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

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

.footer-section p {
    color: #a0a0a0;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 24px auto;
    padding: 24px;
    background-color: #2a2a2a;
    border-radius: 6px;
    font-size: 14px;
    color: #a0a0a0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333333;
    color: #a0a0a0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #2c3e50;
}

.cookie-content a {
    color: #2a5d3f;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #1e4530;
}

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background-color: #d1d5db;
}

.page-header {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 24px;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

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

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 80px 24px;
    background-color: #fafbfc;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2a5d3f;
}

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

.team-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-section > .content-wrapper > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
    font-size: 18px;
    color: #4a5568;
}

.expertise-areas {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.expertise-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.expertise-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #d4e9df;
}

.expertise-item h4 {
    padding: 24px 24px 12px 24px;
    font-size: 20px;
    color: #2a5d3f;
}

.expertise-item p {
    padding: 0 24px 24px 24px;
    color: #4a5568;
}

.approach-section {
    padding: 80px 24px;
    background-color: #fafbfc;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: #2a5d3f;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    color: #4a5568;
}

.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 24px;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 40px;
}

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

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

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2a5d3f;
}

.service-detail-content p {
    color: #4a5568;
    margin-bottom: 16px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
    color: #4a5568;
}

.service-detail-content ul li {
    margin-bottom: 8px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #2a5d3f;
    margin-bottom: 16px;
}

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

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

.contact-info-section {
    padding: 60px 24px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-details > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2a5d3f;
}

.contact-item p {
    color: #4a5568;
}

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

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

.contact-approach {
    padding: 80px 24px;
    background-color: #fafbfc;
}

.contact-approach h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.approach-timeline {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.timeline-item {
    flex: 1;
    min-width: 240px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-marker {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2a5d3f;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.timeline-item p {
    color: #4a5568;
}

.faq-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2a5d3f;
}

.faq-item p {
    color: #4a5568;
}

.thanks-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.thanks-section .content-wrapper {
    display: flex;
    gap: 60px;
}

.thanks-content {
    flex: 2;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 32px;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: center;
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2a5d3f;
}

.step-item strong {
    display: block;
    font-size: 18px;
    color: #2a5d3f;
    margin-bottom: 8px;
}

.step-item p {
    color: #4a5568;
}

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

.secondary-button {
    display: inline-block;
    background-color: #e9ecef;
    color: #2c3e50;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.secondary-button:hover {
    background-color: #d1d5db;
}

.thanks-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a5d3f;
}

.info-card p {
    color: #4a5568;
    margin-bottom: 8px;
}

.text-link {
    color: #2a5d3f;
    text-decoration: underline;
}

.legal-page {
    padding: 60px 24px;
    background-color: #ffffff;
}

.legal-page .content-wrapper {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2a5d3f;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-section p {
    color: #4a5568;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: #4a5568;
}

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

.legal-section a {
    color: #2a5d3f;
    text-decoration: underline;
}

.legal-date {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 48px;
}

.cookie-reset-btn {
    background-color: #2a5d3f;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 12px;
}

.cookie-reset-btn:hover {
    background-color: #1e4530;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 24px;
    }

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

    .thanks-section .content-wrapper {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }
}