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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f5f5f5;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-minimal {
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
}

.hero-visual {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f0f0f0;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-minimal {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.services-overview {
    padding: 8rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title-centered {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5rem;
    color: #1a1a1a;
}

.services-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card-minimal {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 450px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-minimal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.service-card-minimal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 2rem 1rem;
    color: #1a1a1a;
}

.service-card-minimal p {
    font-size: 1rem;
    color: #666;
    margin: 0 2rem 1.5rem;
    line-height: 1.6;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 2rem 1.5rem;
}

.cta-minimal {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 2rem 2rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    width: calc(100% - 4rem);
}

.cta-minimal:hover {
    background-color: #1f4520;
}

.contact-form-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.form-container-minimal {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-container-minimal h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn-minimal {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.trust-section {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

.footer-minimal {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.875rem;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #7cb342;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-reject {
    background-color: #555;
    color: #ffffff;
}

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

.page-hero-minimal {
    padding: 6rem 2rem 3rem;
    background-color: #fafafa;
}

.page-hero-minimal h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.intro-lead {
    font-size: 1.375rem;
    color: #666;
    font-weight: 400;
}

.about-content {
    padding: 6rem 2rem;
}

.content-wide-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.text-block-wide {
    flex: 1;
    min-width: 400px;
}

.text-block-wide h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.text-block-wide p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.visual-block {
    flex: 1;
    min-width: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.visual-block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-section {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.values-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.expertise-section {
    padding: 6rem 2rem;
}

.expertise-visual {
    max-width: 1400px;
    margin: 3rem auto 0;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.expertise-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-detailed {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-block {
    display: flex;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 400px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #666;
}

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

.service-detail-visual {
    flex: 1;
    min-width: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-section-minimal {
    padding: 8rem 2rem;
    background-color: #fafafa;
    text-align: center;
}

.cta-section-minimal h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-section-minimal p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 1.25rem 3rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.contact-info-section {
    padding: 6rem 2rem;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 400px;
}

.contact-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.detail-item p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-visual-block {
    flex: 1;
    min-width: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-note-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.thanks-section {
    padding: 8rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-reference {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.service-reference p {
    margin: 0;
    color: #666;
}

.next-steps {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.steps-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.steps-list li {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

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

.back-button:hover {
    background-color: #1f4520;
}

.legal-page {
    padding: 4rem 2rem 6rem;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

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

.legal-page ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1f4520;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }

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

    .service-card-minimal {
        max-width: 100%;
    }

    .content-wide-asymmetric,
    .service-detail-block,
    .contact-grid {
        flex-direction: column;
    }

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