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

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

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #8B4513;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-primary {
    background: #8B4513;
    color: #ffffff;
}

.btn-primary:hover {
    background: #704010;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f9f7f4;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.hero-right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #8B4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #704010;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,69,19,0.3);
}

.intro-section,
.about-intro,
.team-section,
.recognition-split,
.inquiry-section {
    padding: 5rem 0;
}

.split-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 2px solid #8B4513;
    color: #8B4513;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #8B4513;
    color: #ffffff;
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.split-content-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
    background: #f9f7f4;
}

.split-image-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.quote-block {
    max-width: 600px;
}

.quote-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B4513;
}

.reservation-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.form-info {
    flex: 1;
    padding: 2rem 0;
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.form-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-item strong {
    color: #8B4513;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.form-container {
    flex: 1;
    background: #f9f7f4;
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #8B4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #704010;
}

.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    display: block;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

.page-hero {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

.values-section {
    padding: 6rem 2rem;
    background: #f9f7f4;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-item {
    flex: 1;
    min-width: 260px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.full-width-content {
    max-width: 1400px;
    margin: 0 auto;
}

.content-center {
    max-width: 900px;
    margin: 0 auto;
}

.content-center h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    text-align: center;
}

.content-center p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.recognition-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recognition-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.recognition-item strong {
    display: block;
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.recognition-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 5rem;
}

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

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

.service-detail-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-detail-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f9f7f4;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    padding: 0.6rem 1.2rem;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #8B4513;
}

.price-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    color: #8B4513;
    font-weight: 700;
}

.services-cta {
    padding: 4rem 2rem;
    background: #2c2c2c;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #8B4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #704010;
    transform: translateY(-2px);
}

.contact-main {
    padding: 5rem 0;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
    padding: 4rem;
    background: #f9f7f4;
}

.contact-image-block {
    flex: 1;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: #8B4513;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.directions-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.directions-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.direction-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.direction-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.policies-section {
    padding: 6rem 2rem;
    background: #f9f7f4;
}

.policies-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.policy-item {
    flex: 1;
    min-width: 260px;
}

.policy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.policy-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #f9f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.thanks-details strong {
    color: #8B4513;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thanks-next p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.prepare-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.prepare-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.prepare-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #8B4513;
}

.prepare-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    color: #8B4513;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-split,
    .split-container,
    .testimonial-split,
    .form-split,
    .footer-content,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-text h1,
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

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

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