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

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

.main-nav {
    padding: 2rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.4rem 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fafafa;
}

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #f8f8f8;
}

.hero-content {
    max-width: 700px;
    padding: 6rem 3rem 3rem 3rem;
    margin-left: 10%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.25rem;
    color: #5a5a5a;
    font-weight: 300;
    max-width: 500px;
}

.hero-image {
    width: 60%;
    margin-left: auto;
    margin-top: -15rem;
}

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

.intro-text {
    padding: 8rem 3rem;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 300;
}

.featured-service {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.service-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.service-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
}

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

.service-info h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.cta-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #333333;
}

.process {
    padding: 8rem 3rem;
    background-color: #ffffff;
}

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

.process h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.process-grid {
    display: flex;
    gap: 3rem;
}

.process-card {
    flex: 1;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.process-card p {
    font-size: 1rem;
    color: #5a5a5a;
    font-weight: 300;
    line-height: 1.8;
}

.services-preview {
    padding: 8rem 3rem;
    background-color: #f8f8f8;
}

.services-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-preview .narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 4rem;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 0 0 2rem 0;
}

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
    margin-bottom: 1.5rem;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1a1a1a;
    margin: 1.5rem 0;
    padding: 0 1.5rem;
}

.select-service {
    margin: 0 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 8rem 3rem;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.form-container > p {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    color: #5a5a5a;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #3a3a3a;
    font-weight: 400;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
    background-color: #ffffff;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 5rem 3rem 2rem 3rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #a0a0a0;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    font-size: 0.9rem;
    color: #a0a0a0;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #d0d0d0;
    padding: 2rem 3rem;
    z-index: 200;
    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;
    color: #4a4a4a;
}

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

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 8rem 3rem 5rem 3rem;
    background-color: #f8f8f8;
}

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

.page-hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.about-intro {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.about-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 300;
}

.about-philosophy {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.philosophy-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.philosophy-text {
    flex: 1.2;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.philosophy-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.philosophy-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.team-approach {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.team-approach h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.team-approach .narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.methodology-steps {
    max-width: 1400px;
    margin: 3rem auto 0 auto;
    display: flex;
    gap: 3rem;
}

.methodology-step {
    flex: 1;
    padding: 2.5rem;
    background-color: #f8f8f8;
}

.methodology-step h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.methodology-step p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.values {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.values h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.values-grid {
    display: flex;
    gap: 3rem;
}

.value-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.credentials {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.credentials h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.credentials p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.services-intro {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.services-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
    font-weight: 300;
}

.service-detail {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.service-detail.alternate {
    background-color: #ffffff;
}

.service-detail-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

.service-detail-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.service-detail-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.service-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

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

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

.additional-services {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.additional-services h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.additional-services .narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.supplementary-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.supplementary-card {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
}

.supplementary-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.supplementary-card .service-price {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.supplementary-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.8;
}

.service-inquiry {
    padding: 6rem 3rem;
    background-color: #ffffff;
    text-align: center;
}

.service-inquiry h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-inquiry p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.inquiry-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.inquiry-link:hover {
    background-color: #333333;
}

.contact-content {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-address {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a4a4a;
}

.contact-email {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.hours-item .day {
    font-size: 1rem;
    color: #3a3a3a;
}

.hours-item .time {
    font-size: 1rem;
    color: #5a5a5a;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.contact-notes {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.contact-notes h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.contact-notes p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.directions {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.directions h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.directions p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    font-weight: 300;
}

.thanks-section {
    padding: 10rem 3rem;
    background-color: #fafafa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-content #service-confirmation {
    font-weight: 500;
    color: #1a1a1a;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: #e8e8e8;
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

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

.legal-content {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.legal-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

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

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

.legal-content ul li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.cookies-table th {
    background-color: #f8f8f8;
    font-weight: 500;
    color: #1a1a1a;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #5a5a5a;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .service-layout,
    .philosophy-layout,
    .service-detail-layout,
    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-image {
        width: 100%;
        margin-top: 2rem;
    }

    .process-grid,
    .values-grid,
    .methodology-steps,
    .supplementary-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .ad-disclosure {
        display: none;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}