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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

.cookie-btn.accept:hover {
    background-color: #755f47;
}

.cookie-btn.reject {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

.main-nav a {
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f6f3;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #755f47;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
}

.intro-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

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

.intro-image img {
    width: 100%;
    height: 100%;
}

.services-preview {
    padding: 100px 20px;
    background-color: #f8f6f3;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 18px;
    color: #666;
}

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

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

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 28px;
}

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

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #8b7355;
}

.approach-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

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

.approach-image img {
    width: 100%;
    height: 100%;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 32px;
    font-weight: 600;
    color: #8b7355;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

.form-section {
    padding: 100px 20px;
    background-color: #f8f6f3;
}

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

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: #755f47;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c2c2c;
}

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

.testimonial {
    flex: 1;
    padding: 32px;
    background-color: #f8f6f3;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #8b7355;
}

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

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

.footer-col {
    flex: 1;
}

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #888;
}

.page-hero {
    padding: 100px 20px 60px;
    background-color: #f8f6f3;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

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

.story-image img {
    width: 100%;
    height: 100%;
}

.philosophy-section {
    padding: 100px 20px;
    background-color: #f8f6f3;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-header h2 {
    font-size: 42px;
    color: #2c2c2c;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.team-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.team-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.team-member {
    display: flex;
    gap: 40px;
    align-items: center;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
}

.team-image {
    flex: 1;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.team-role {
    font-size: 16px;
    color: #8b7355;
    font-weight: 500;
    margin-bottom: 16px;
}

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

.values-section {
    padding: 100px 20px;
    background-color: #f8f6f3;
}

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

.values-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c2c2c;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-icon {
    font-size: 28px;
    color: #8b7355;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.value-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.cta-section {
    padding: 100px 20px;
    background-color: #8b7355;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ffffff;
    color: #8b7355;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f0e8df;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-lead {
    font-size: 18px;
    color: #8b7355;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.service-features h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-features ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.service-features ul li {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 8px;
}

.service-pricing {
    margin-bottom: 24px;
}

.price-tag {
    font-size: 32px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #888;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #755f47;
}

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

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

.service-info-section {
    padding: 100px 20px;
    background-color: #f8f6f3;
}

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

.info-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c2c2c;
}

.info-blocks {
    display: flex;
    gap: 40px;
}

.info-block {
    flex: 1;
    padding: 28px;
    background-color: #ffffff;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.info-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2,
.contact-block h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-block h3 {
    font-size: 22px;
}

.contact-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

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

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 6px;
}

.contact-value {
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
}

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

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

.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
}

.map-overlay p {
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    color: #8b7355;
    margin-bottom: 24px;
}

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

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 32px;
}

.selected-service {
    font-size: 16px;
    color: #555;
}

.selected-service strong {
    color: #8b7355;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #755f47;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f8f6f3;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #e8e4df;
}

.next-steps-section {
    padding: 80px 20px;
    background-color: #f8f6f3;
}

.next-steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps-container h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c2c2c;
}

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

.next-step {
    flex: 1;
    text-align: center;
}

.next-step .step-number {
    font-size: 48px;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 16px;
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

.legal-container ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

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

.legal-date {
    margin-top: 48px;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

    .intro-split,
    .approach-split,
    .story-split,
    .team-member,
    .contact-container {
        flex-direction: column;
    }

    .team-member:nth-child(even) {
        flex-direction: column;
    }

    .services-grid,
    .testimonials-grid,
    .info-blocks,
    .next-steps-grid {
        flex-direction: column;
    }

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

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

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

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

    .form-row {
        flex-direction: column;
    }
}