* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}

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

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

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

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

.navigation {
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 2.5rem;
}

.hero-visual {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #333333;
    opacity: 1;
}

.cta-secondary {
    background-color: #f5f5f5;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
}

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-center {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-statement {
    padding: 6rem 0;
    background-color: #fafafa;
}

.statement-text {
    font-size: 1.75rem;
    line-height: 1.6;
    color: #333333;
}

.approach-section {
    padding: 6rem 0;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

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

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.approach-item p {
    font-size: 1.125rem;
    color: #555555;
}

.services-preview {
    padding: 6rem 0;
    background-color: #fafafa;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #e0e0e0;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #555555;
    font-size: 1rem;
}

.price {
    padding: 0 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.875rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.form-section {
    padding: 6rem 0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #555555;
    margin-bottom: 3rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.trust-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.trust-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333333;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #aaaaaa;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #aaaaaa;
    font-size: 0.95rem;
}

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

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

.disclaimer p {
    font-size: 0.875rem;
    color: #aaaaaa;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #aaaaaa;
}

.page-hero {
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.375rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 0;
}

.story-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-block img {
    flex: 1;
    min-width: 320px;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.story-text {
    flex: 1;
    min-width: 320px;
}

.story-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.7;
}

.philosophy-section {
    padding: 6rem 0;
    background-color: #fafafa;
}

.philosophy-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-item p {
    font-size: 1.125rem;
    color: #555555;
}

.values-section {
    padding: 6rem 0;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333333;
}

.values-list li:first-child {
    border-top: 1px solid #e0e0e0;
}

.cta-section {
    padding: 6rem 0;
    background-color: #fafafa;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: #555555;
    margin-bottom: 2.5rem;
}

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

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.service-detail-visual {
    flex: 1;
    min-width: 320px;
}

.service-detail-visual img {
    border-radius: 8px;
    background-color: #f0f0f0;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0;
    color: #1a1a1a;
}

.contact-info-section {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.info-item p {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    min-width: 320px;
}

.contact-visual img {
    border-radius: 8px;
    background-color: #f0f0f0;
}

.approach-info {
    padding: 6rem 0;
    background-color: #fafafa;
}

.approach-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.approach-info p {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.thanks-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.375rem;
    color: #555555;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 500;
}

.next-steps {
    padding: 6rem 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1.125rem;
    color: #555555;
}

.thanks-cta {
    padding: 4rem 0;
    background-color: #fafafa;
    text-align: center;
}

.thanks-cta p {
    font-size: 1.125rem;
    color: #555555;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 0;
}

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

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

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    font-size: 1.0625rem;
    color: #555555;
    line-height: 1.7;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style-type: disc;
}

.legal-page ul li {
    font-size: 1.0625rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-page a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .statement-text {
        font-size: 1.375rem;
    }

    .trust-text {
        font-size: 1.25rem;
    }

    .approach-grid,
    .philosophy-grid,
    .steps-grid {
        flex-direction: column;
    }

    .story-block,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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