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

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
}

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

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

.nav-links a:hover {
    color: #2d5016;
}

.hero-section {
    position: relative;
    height: 580px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.85) 0%, rgba(45, 80, 22, 0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    color: #ffffff;
    z-index: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2d5016;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.intro-image {
    flex: 1;
    background-color: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.value-section {
    padding: 90px 0;
    background-color: #2d5016;
    color: #ffffff;
}

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

.value-blocks {
    display: flex;
    gap: 50px;
}

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

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

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

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5016;
}

.services-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-price {
    font-size: 20px;
    font-weight: 600;
    color: #2d5016;
}

.cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #3f6b1f;
    cursor: pointer;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2d5016;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #ffffff;
    cursor: pointer;
}

.consultation-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.consultation-box {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.consultation-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5016;
    text-align: center;
}

.consultation-box > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

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

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

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

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

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

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

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

.trust-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #2d5016;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #4a4a4a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    text-align: center;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #86b86a;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-header {
    padding: 80px 0 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2d5016;
}

.page-header p {
    font-size: 20px;
    color: #4a4a4a;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

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

.service-pricing {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e8e8e8;
}

.price-label {
    font-size: 16px;
    color: #4a4a4a;
    margin-right: 10px;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #2d5016;
}

.service-detail-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    padding: 80px 0;
    background-color: #2d5016;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #2d5016;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
}

.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5016;
}

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 4px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d5016;
}

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 25px;
    color: #2d5016;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.team-image-wrapper {
    margin-bottom: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.team-values {
    display: flex;
    gap: 50px;
}

.value-block {
    flex: 1;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2d5016;
}

.value-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.philosophy-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2d5016;
    text-align: center;
}

.philosophy-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.8;
}

.history-section {
    padding: 80px 0;
}

.history-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5016;
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e8e8e8;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #2d5016;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5016;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5016;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 4px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map-placeholder {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
}

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

.approach-contact {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.approach-contact h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5016;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    min-width: 60px;
    height: 60px;
    background-color: #2d5016;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5016;
}

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 4px;
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d5016;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-confirmation {
    margin-bottom: 40px;
}

.service-note {
    font-size: 16px;
    color: #2d5016;
    background-color: #f0f7eb;
    padding: 15px 25px;
    border-radius: 4px;
}

.next-steps {
    text-align: left;
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2d5016;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.steps-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
    font-size: 18px;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2d5016;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a4a4a;
}

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

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

.legal-content a {
    color: #2d5016;
    text-decoration: underline;
}

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

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

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

    .intro-grid,
    .about-grid,
    .service-detail-item,
    .contact-layout {
        flex-direction: column;
    }

    .services-grid,
    .value-blocks,
    .team-values {
        flex-direction: column;
    }

    .approach-blocks,
    .faq-grid {
        flex-direction: column;
    }

    .approach-item,
    .faq-item {
        flex: 1 1 100%;
    }

    .trust-stats {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}