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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #8B7355;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

.btn-primary {
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #6B5845;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

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

.btn-cta:hover {
    background-color: #6B5845;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-image-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.split-text-wrapper {
    flex: 1;
}

.split-text-wrapper h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text-wrapper p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.checklist {
    list-style: none;
    margin: 20px 0;
}

.checklist li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-form-split {
    display: flex;
    gap: 40px;
}

.service-list {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #666;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 16px;
}

.btn-select-service {
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #6B5845;
}

.service-form-wrapper {
    flex: 1;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

.btn-submit {
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    padding: 14px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6B5845;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-note {
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

.form-note.hidden {
    display: none;
}

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

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.center-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.process-step {
    flex: 1;
}

.step-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    color: #666;
}

.final-cta {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.btn-cta-large:hover {
    background-color: #6B5845;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.page-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 18px;
    color: #666;
}

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

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

.service-info ul li {
    margin-bottom: 10px;
    color: #555;
}

.service-visual {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

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

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

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

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

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

.approach-item p {
    font-size: 16px;
    color: #666;
}

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

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

.commitment-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.commitment-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.about-cta {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-content {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-main {
    flex: 1;
}

.contact-info-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-main > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

.contact-value {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 6px;
}

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

.contact-visual {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-guidelines {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.guidelines-box {
    max-width: 1000px;
    margin: 0 auto;
}

.guidelines-box h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.guidelines-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.guideline-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

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

.guideline-item p {
    font-size: 16px;
    color: #666;
}

.service-area {
    padding: 60px 0;
}

.center-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    color: #555;
}

.quick-inquiry {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.inquiry-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.inquiry-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.inquiry-box p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #666;
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #8B7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

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

.selected-service-display {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-display h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.selected-service-display p {
    font-size: 18px;
    font-weight: 600;
    color: #8B7355;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    padding-left: 30px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.legal-content {
    max-width: 900px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 40px;
}

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

.legal-content a {
    color: #8B7355;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #6B5845;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

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

    .split-left,
    .split-right {
        width: 100%;
    }

    .split-container,
    .split-container.reverse,
    .service-split,
    .service-split.reverse,
    .contact-split {
        flex-direction: column;
    }

    .service-form-split {
        flex-direction: column;
    }

    .service-form-wrapper {
        position: static;
    }

    .process-grid,
    .values-grid,
    .footer-grid {
        flex-direction: column;
    }

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

    .main-nav {
        display: none;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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