* {
    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;
}

.ad-notice {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

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

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.intro-content {
    flex: 1;
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.services-section {
    padding: 100px 48px;
    background-color: #f9f9f9;
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
    overflow: hidden;
    min-height: 420px;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

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

.service-details h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.price-tag {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.select-service {
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

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

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.form-container {
    flex: 1;
    padding: 80px 80px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-container > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 16px;
}

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

.disclaimer-section {
    padding: 60px 48px;
    background-color: #f0f0f0;
}

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

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 48px 30px;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #b8b8b8;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px 48px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.cookie-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.story-split {
    display: flex;
    padding: 100px 48px;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
    height: 450px;
}

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

.approach-split {
    display: flex;
    padding: 100px 48px;
    gap: 80px;
    align-items: center;
    background-color: #fafafa;
}

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

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
    height: 500px;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.values-section {
    padding: 100px 48px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #fafafa;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.page-header {
    padding: 80px 48px 60px;
    text-align: center;
    background-color: #fafafa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.services-detail {
    padding: 80px 48px;
    background-color: #ffffff;
}

.service-block-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-info > p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.service-includes li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1a1a1a;
}

.price-display {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
    height: 450px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section-centered {
    padding: 80px 48px;
    text-align: center;
    background-color: #fafafa;
}

.cta-section-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.cta-section-centered p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.contact-split {
    display: flex;
    min-height: 600px;
    padding: 80px 48px;
    gap: 80px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-info > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    margin-top: 48px;
    padding: 24px;
    background-color: #f8f8f8;
}

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

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e8e8;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 80px 48px;
    text-align: center;
    background-color: #fafafa;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.location-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    padding: 120px 48px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-content > p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #fafafa;
    padding: 32px;
    margin-bottom: 48px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.thanks-next {
    text-align: left;
    margin-bottom: 48px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    font-size: 16px;
    line-height: 2;
    color: #555;
    padding-left: 28px;
    position: relative;
}

.thanks-next li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.legal-page {
    padding: 80px 48px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .form-section-split,
    .page-hero-split,
    .story-split,
    .approach-split,
    .service-block-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .service-details,
    .form-container,
    .hero-text {
        padding: 60px 32px;
    }

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

    .intro-content h2,
    .approach-text h2,
    .service-info h2 {
        font-size: 30px;
    }

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

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

    .story-image,
    .approach-image,
    .service-visual {
        height: 300px;
    }

    .values-grid-split {
        flex-direction: column;
    }

    .value-card {
        min-width: 100%;
    }
}