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

.ad-notice {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2D5A3D;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 40px 80px 80px;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

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

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

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

.cta-primary:hover {
    background-color: #234a2f;
}

.intro-section {
    background-color: #f8f8f8;
    padding: 100px 40px;
}

.intro-wide {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-wide h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-wide p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.split-feature {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.split-feature.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 80px;
}

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

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

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
    color: #4a4a4a;
}

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

.feature-image {
    flex: 1;
    background-color: #f8f8f8;
}

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

.services-overview {
    background-color: #ffffff;
    padding: 100px 40px;
}

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

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

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: #f8f8f8;
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 100%;
    height: 200px;
    background-color: #e5e5e5;
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2D5A3D;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2D5A3D;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #234a2f;
}

.form-section {
    background-color: #f8f8f8;
    padding: 100px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-container > p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

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

.cta-submit:hover {
    background-color: #234a2f;
}

.trust-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: #262626;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #b8b8b8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
    color: #b8b8b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2D5A3D;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
}

.cookie-content a {
    color: #2D5A3D;
    text-decoration: underline;
}

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

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

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

.cookie-accept:hover {
    background-color: #234a2f;
}

.cookie-reject {
    background-color: #e5e5e5;
    color: #1a1a1a;
}

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

.page-hero {
    background-color: #2D5A3D;
    color: #ffffff;
    text-align: center;
    padding: 100px 40px;
}

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

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

.split-content {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

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

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

.content-image {
    flex: 1;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2D5A3D;
}

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

.expertise-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.expertise-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

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

.expertise-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    padding: 32px;
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.cta-section {
    background-color: #2D5A3D;
    padding: 100px 40px;
    text-align: center;
}

.cta-container h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-container p {
    font-size: 20px;
    color: #e8f1eb;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2D5A3D;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.service-detail {
    padding: 80px 40px;
}

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

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

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

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-text h4 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #1a1a1a;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-text ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

.service-detail-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D5A3D;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-pricing {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #2D5A3D;
}

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

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2D5A3D;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-note {
    margin-top: 40px;
    padding: 24px;
    background-color: #f8f8f8;
    border-left: 4px solid #2D5A3D;
    border-radius: 4px;
}

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

.contact-image {
    flex: 1;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

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

.map-section > p {
    font-size: 18px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 32px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e5e5;
}

.map-info p {
    font-size: 18px;
    color: #4a4a4a;
    font-weight: 600;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 70vh;
}

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

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

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-content {
    background-color: #f8f8f8;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 60px;
}

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

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
}

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

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

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

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

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

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

.btn-primary:hover {
    background-color: #234a2f;
}

.btn-secondary {
    background-color: #e5e5e5;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background-color: #d5d5d5;
}

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

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

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

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

.legal-container ul li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.legal-container a {
    color: #2D5A3D;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-feature,
    .split-content,
    .contact-split {
        flex-direction: column;
    }

    .split-feature.reverse,
    .split-content.reverse {
        flex-direction: column;
    }

    .hero-content,
    .feature-text {
        padding: 60px 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .page-hero h1 {
        font-size: 38px;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .service-detail-content {
        flex-direction: column;
    }

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