* {
    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: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.logo-section .brand {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f8f5f2;
}

.hero-text-wrapper {
    max-width: 500px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d4c4b0;
}

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

.btn-primary:hover {
    background-color: #725d45;
}

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

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

.intro-left-content {
    flex: 1;
}

.intro-left-content h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-left-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.intro-right-visual {
    flex: 1;
}

.intro-right-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-highlight {
    padding: 80px 40px;
    background-color: #fafafa;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #d4c4b0;
}

.service-details {
    padding: 30px;
}

.service-details h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

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

.approach-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.form-section {
    padding: 80px 40px;
    background-color: #f8f5f2;
}

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

.form-container-centered h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d9e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #725d45;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef9f5;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
    font-style: italic;
}

.footer-split {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3d4f62;
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    color: #e9ecef;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #725d45;
}

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

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

.page-header-split {
    display: flex;
    min-height: 400px;
}

.header-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.header-content-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.header-content-left p {
    font-size: 20px;
    color: #b8c1cc;
}

.header-visual-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d4c4b0;
}

.story-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.container-narrow h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.container-narrow p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-split {
    display: flex;
}

.value-block {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f5f2;
}

.value-block-alt {
    background-color: #8b7355;
}

.value-block-alt .value-content h4,
.value-block-alt .value-content p {
    color: #ffffff;
}

.value-content h4 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.team-text {
    flex: 1;
}

.team-text h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.team-visual {
    flex: 1;
}

.team-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.philosophy-section {
    padding: 80px 40px;
    background-color: #fafafa;
}

.services-page-header {
    text-align: center;
    padding: 80px 40px;
    background-color: #f8f5f2;
}

.services-page-header h2 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-page-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-reverse {
    flex-direction: row-reverse;
    background-color: #fafafa;
}

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

.service-detail-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-text p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

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

.service-pricing {
    margin-top: 30px;
}

.price-large {
    display: block;
    font-size: 36px;
    color: #8b7355;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-page-header {
    text-align: center;
    padding: 80px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.contact-page-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-page-header p {
    font-size: 18px;
    color: #b8c1cc;
}

.contact-info-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
}

.contact-left {
    flex: 1;
}

.contact-left h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-detail-block {
    margin-bottom: 32px;
}

.contact-detail-block h4 {
    font-size: 18px;
    color: #8b7355;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-detail-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.contact-note-section {
    padding: 80px 40px;
    background-color: #fafafa;
}

.contact-note-section a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 600;
}

.contact-note-section a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f5f2;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.thanks-container h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

.legal-page h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #8b7355;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .container-split,
    .container-split-reverse,
    .page-header-split,
    .values-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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