* {
    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-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    background-color: #e8ebe9;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    color: #ffffff;
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.intro-section {
    padding: 80px 20px;
    background-color: #f8f9f9;
}

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

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

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

.services-cards {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: #e8ebe9;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 18px;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin-bottom: 18px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #234a31;
}

.approach-section {
    padding: 90px 20px;
    background-color: #f8f9f9;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.split-image {
    flex: 1;
    background-color: #e8ebe9;
}

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

.form-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
}

.consultation-form {
    background-color: #f8f9f9;
    padding: 40px;
    border-radius: 12px;
}

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

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

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

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

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

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

.btn-submit:hover {
    background-color: #234a31;
}

.principles-section {
    padding: 90px 20px;
    background-color: #f8f9f9;
}

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

.principles-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.principle-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.principle-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

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

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaaaaa;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #234a31;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #333333;
}

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

.page-header {
    background-color: #2d5f3f;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    font-weight: 300;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

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

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

.detail-content {
    flex: 1;
}

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

.price-tag {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #1a1a1a;
}

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

.detail-content ul li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.cta-section {
    background-color: #f8f9f9;
    padding: 80px 20px;
    text-align: center;
}

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

.cta-content p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 32px;
}

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

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

.about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

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

.team-section {
    background-color: #f8f9f9;
    padding: 80px 20px;
}

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

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e8ebe9;
}

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

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    font-size: 16px;
    color: #2d5f3f;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.philosophy-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

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

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

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

.philosophy-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.numbers-section {
    background-color: #2d5f3f;
    padding: 80px 20px;
    color: #ffffff;
}

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

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

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

.number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
}

.number-label {
    font-size: 16px;
    opacity: 0.9;
}

.process-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

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

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-item .note {
    font-size: 14px;
    color: #888888;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    background-color: #e8ebe9;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.95);
    padding: 16px;
    border-radius: 6px;
}

.map-overlay p {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.directions-section {
    background-color: #f8f9f9;
    padding: 60px 20px;
}

.directions-content {
    max-width: 1000px;
    margin: 0 auto;
}

.directions-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.direction-item {
    flex: 1;
}

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

.direction-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: #f8f9f9;
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.thanks-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.thanks-container {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

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

.selected-service-box {
    background-color: #f8f9f9;
    padding: 30px;
    border-radius: 8px;
    display: inline-block;
}

.service-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

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

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

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

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 250px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

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

.step-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

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

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

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.last-updated {
    font-size: 14px;
    color: #888888;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2d5f3f;
}

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

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

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

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

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

    .hero-overlay p {
        font-size: 18px;
    }

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

    .service-card {
        width: 100%;
    }

    .split-content,
    .story-content,
    .contact-container {
        flex-direction: column;
    }

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

    .team-grid,
    .principles-grid,
    .philosophy-grid,
    .numbers-grid,
    .directions-grid,
    .steps-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}