* {
    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-color: #fafafa;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-right a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #8b4513;
}

.ad-notice {
    font-size: 0.75rem;
    color: #888;
    background-color: #f5f5f5;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    padding: 8% 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 0.95rem 2rem;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6f3410;
}

.cta-secondary {
    display: inline-block;
    padding: 0.95rem 2rem;
    background-color: #f4f4f4;
    color: #4a4a4a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #e0e0e0;
}

.hero-image {
    flex: 1;
    background-color: #d4b89f;
    overflow: hidden;
}

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

.intro-offset {
    display: flex;
    gap: 4rem;
    padding: 6rem 7%;
    align-items: center;
    background-color: #fafafa;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

.intro-visual {
    flex: 1;
    background-color: #e8dcc8;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.services-grid {
    padding: 6rem 7%;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 280px;
    max-width: 320px;
    background-color: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #d4b89f;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    padding: 1.5rem 1.5rem 0.8rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #5a5a5a;
    padding: 0 1.5rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b4513;
    padding: 1rem 1.5rem 0.5rem;
}

.select-service {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.85rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-split {
    display: flex;
    min-height: 600px;
    background-color: #fafafa;
}

.form-image {
    flex: 1;
    background-color: #d4b89f;
}

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

.form-container {
    flex: 1;
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-container > p {
    color: #5a5a5a;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.cta-submit {
    padding: 1rem 2.5rem;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #6f3410;
}

.trust-section {
    padding: 6rem 7%;
    background-color: #ffffff;
}

.trust-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1 1 250px;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 0.98rem;
    color: #5a5a5a;
}

.footer {
    background-color: #2c2c2c;
    color: #cccccc;
    padding: 3rem 7% 1.5rem;
}

.footer-columns {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

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

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #444;
    padding-top: 2rem;
    margin-bottom: 2rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 7%;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1 1 300px;
    font-size: 0.95rem;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: #6f3410;
}

.cookie-reject {
    background-color: #555;
    color: #ffffff;
}

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

.cookie-link {
    color: #cccccc;
    text-decoration: underline;
    font-size: 0.9rem;
}

.page-hero {
    background-color: #8b4513;
    color: #ffffff;
    padding: 5rem 7%;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-story-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 7%;
    align-items: center;
    background-color: #ffffff;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    background-color: #e8dcc8;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.values-section {
    padding: 6rem 7%;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3.5rem;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1 1 260px;
    max-width: 340px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
}

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

.value-item p {
    font-size: 0.98rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.team-image {
    flex: 1;
    background-color: #d4b89f;
}

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

.team-text {
    flex: 1;
    padding: 5rem 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

.cta-inline {
    padding: 5rem 7%;
    background-color: #f4f1ed;
    text-align: center;
}

.cta-inline h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-inline p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 7%;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8dcc8;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.02rem;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #4a4a4a;
    font-size: 0.95rem;
}

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

.pricing-note {
    padding: 3rem 7%;
    background-color: #f4f1ed;
    text-align: center;
}

.pricing-note h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.pricing-note p {
    font-size: 1.02rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 7%;
    align-items: flex-start;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 0.8rem;
}

.contact-block p {
    font-size: 1.02rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.email-display {
    font-weight: 500;
    color: #4a4a4a;
}

.contact-image {
    flex: 1;
    background-color: #e8dcc8;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.location-info {
    padding: 4rem 7%;
    background-color: #fafafa;
    text-align: center;
}

.location-info h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.location-info p {
    font-size: 1.02rem;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 7%;
    align-items: center;
    background-color: #ffffff;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.thanks-service-info {
    background-color: #f4f1ed;
    padding: 1.2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.thanks-service-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    font-weight: 500;
}

.thanks-next-steps h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.thanks-next-steps li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #5a5a5a;
    font-size: 1.02rem;
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    background-color: #e8dcc8;
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.legal-page {
    padding: 3rem 7%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.update-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #4a4a4a;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #5a5a5a;
}

.legal-page li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .form-section-split,
    .about-story-split,
    .team-split,
    .service-detail-item,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .trust-points,
    .values-grid {
        flex-direction: column;
    }

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