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

:root {
    --primary-color: #8B6F47;
    --secondary-color: #2C2416;
    --accent-color: #B8956A;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --overlay-dark: rgba(44, 36, 22, 0.75);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.ad-disclosure {
    background-color: var(--secondary-color);
    color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 36px;
    z-index: 999;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--bg-white);
    max-width: 700px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--accent-color);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
}

.intro-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.intro-section h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--secondary-color);
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
}

.visual-break {
    background-color: var(--bg-light);
    padding: 0;
}

.split-layout {
    display: flex;
    align-items: stretch;
}

.split-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: '→';
    margin-left: 8px;
}

.services-overview {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.services-overview h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--secondary-color);
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
}

.service-card h4 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 24px 20px;
    flex-grow: 1;
}

.price-tag {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 18px;
    margin-top: auto;
}

.process-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.process-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-content {
    flex: 1.2;
}

.process-content h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

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

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

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.step h5 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.process-image {
    flex: 0.8;
    background-color: var(--border-color);
}

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

.cta-section {
    padding: 100px 20px;
    background-color: var(--secondary-color);
}

.cta-box {
    text-align: center;
    color: var(--bg-white);
}

.cta-box h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.form-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 48px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--accent-color);
}

.main-footer {
    background-color: var(--secondary-color);
    color: var(--bg-light);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 3px solid var(--primary-color);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
}

.cookie-content a {
    color: var(--primary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: var(--accent-color);
}

.btn-reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-reject:hover {
    background-color: var(--border-color);
}

.page-header {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: stretch;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 28px 0 16px;
    color: var(--secondary-color);
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-detail-image {
    flex: 0.8;
    background-color: var(--border-color);
}

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

.pricing-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
}

.about-intro {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 0.8;
    background-color: var(--border-color);
}

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

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: var(--bg-white);
}

.value-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.expertise-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.expertise-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.expertise-card {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background-color: var(--bg-light);
}

.expertise-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.philosophy-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.philosophy-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.commitment-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.commitment-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--secondary-color);
    text-align: center;
}

.commitment-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

.contact-detail h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image {
    flex: 0.8;
    background-color: var(--border-color);
}

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

.info-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.info-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-align: center;
}

.info-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.service-areas {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.service-areas h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--secondary-color);
    text-align: center;
}

.service-areas > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.area-card {
    flex: 1 1 calc(50% - 12px);
    background-color: var(--bg-light);
    padding: 28px;
    text-align: center;
}

.area-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.area-card p {
    font-size: 15px;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 28px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.thanks-section {
    padding: 120px 20px;
    background-color: var(--bg-white);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-info {
    background-color: var(--bg-light);
    padding: 24px;
    margin: 32px 0;
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.next-steps {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.next-steps h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: var(--secondary-color);
    text-align: center;
}

.steps-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.step-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 32px;
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.cookie-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .main-nav {
        position: fixed;
        top: 92px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 92px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

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

    .hero-content p {
        font-size: 17px;
    }

    .split-layout,
    .service-detail-card,
    .about-split,
    .process-wrapper,
    .philosophy-wrapper,
    .contact-layout {
        flex-direction: column;
    }

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

    .services-grid,
    .values-list,
    .expertise-grid,
    .areas-grid {
        flex-direction: column;
    }

    .service-card,
    .value-item,
    .expertise-card,
    .area-card {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}