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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 75vh;
    position: relative;
    background-color: #f8fdf8;
}

.hero-content-offset {
    width: 45%;
    padding: 80px 5% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

.hero-intro {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #555;
}

.hero-visual-block {
    width: 55%;
    position: relative;
    overflow: hidden;
    background-color: #e8f5e9;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1e4620;
}

.intro-block-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.intro-text-narrow {
    width: 55%;
}

.intro-text-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.intro-visual-side {
    width: 45%;
    background-color: #f0f4f0;
}

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

.insight-section {
    padding: 80px 8% 80px 15%;
    background-color: #f8fdf8;
}

.insight-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.benefit-markers {
    list-style: none;
    margin-top: 30px;
}

.benefit-markers li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: #333;
}

.benefit-markers li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.services-showcase {
    padding: 90px 5%;
    background-color: #ffffff;
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-large {
    flex: 1 1 calc(60% - 25px);
}

.card-medium {
    flex: 1 1 calc(50% - 25px);
}

.card-small {
    flex: 1 1 calc(40% - 25px);
}

.service-image-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f4f0;
}

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

.service-card h3 {
    padding: 20px 20px 10px 20px;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px;
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
}

.service-price {
    padding: 15px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
}

.select-service-btn {
    margin: 10px 20px 20px 20px;
    padding: 12px 24px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-block {
    padding: 80px 10% 80px 20%;
    background-color: #f8fdf8;
}

.trust-content-centered {
    max-width: 800px;
}

.trust-content-centered h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.trust-content-centered p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.form-section-inline {
    padding: 90px 5%;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8fdf8;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    margin-bottom: 30px;
    color: #555;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    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: #2c5f2d;
}

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

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

.disclaimer-section {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 5% 30px 5%;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.cookie-reject:hover {
    opacity: 0.8;
}

.page-header-offset {
    padding: 80px 5% 40px 5%;
    background-color: #f8fdf8;
}

.page-header-offset h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #555;
}

.about-story {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.story-visual {
    width: 40%;
    background-color: #f0f4f0;
}

.story-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    width: 60%;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.values-section {
    padding: 80px 5%;
    background-color: #f8fdf8;
}

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

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

.value-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.team-approach {
    padding: 80px 10% 80px 15%;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
}

.cta-about {
    padding: 80px 5%;
    background-color: #f8fdf8;
    text-align: center;
}

.cta-about h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #1e4620;
}

.services-detail {
    padding: 60px 5%;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

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

.service-detail-image {
    width: 45%;
    background-color: #f0f4f0;
}

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

.service-detail-content {
    width: 55%;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

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

.services-cta {
    padding: 80px 5%;
    background-color: #f8fdf8;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.contact-layout {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: flex-start;
    background-color: #ffffff;
}

.contact-info-block {
    width: 50%;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    width: 50%;
    background-color: #f0f4f0;
}

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

.contact-note {
    padding: 80px 10% 80px 15%;
    background-color: #f8fdf8;
}

.contact-note h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #f8fdf8;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.service-confirmation {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-confirmation p {
    font-size: 1.05rem;
    color: #333;
    margin: 0;
}

.legal-page {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 15px 20px;
}

.legal-page ul li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.7;
}

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

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

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

    .hero-content-offset,
    .hero-visual-block {
        width: 100%;
    }

    .intro-block-offset,
    .about-story,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .intro-text-narrow,
    .intro-visual-side,
    .story-visual,
    .story-content,
    .service-detail-image,
    .service-detail-content,
    .contact-info-block,
    .contact-visual {
        width: 100%;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

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

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-content-offset h1 {
        font-size: 2rem;
    }

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