* {
    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: #1a1a1a;
    background: #ffffff;
}

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

.main-nav {
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-minimal {
    padding: 120px 40px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    line-height: 1.5;
    font-weight: 300;
}

.hero-visual {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.intro-space {
    padding: 120px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-block .large-text {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
    color: #333;
}

.problem-section {
    padding: 100px 40px;
    background: #fafafa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 600;
}

.problem-grid {
    display: flex;
    gap: 60px;
}

.problem-item {
    flex: 1;
}

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.problem-item p {
    color: #666;
    font-size: 16px;
}

.solution-visual {
    padding: 120px 40px;
}

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.visual-half {
    flex: 1;
    background-color: #f5f5f5;
}

.visual-half img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.text-half {
    flex: 1;
}

.text-half h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.services-preview {
    padding: 120px 40px;
    background: #fafafa;
}

.services-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    flex: 1;
    min-width: 260px;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 24px;
    font-size: 15px;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

.btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
    cursor: pointer;
}

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

.trust-section {
    padding: 100px 40px;
}

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

.content-wrapper-narrow h2 {
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 600;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.trust-item p {
    color: #666;
    font-size: 16px;
}

.visual-break {
    width: 100%;
    height: 500px;
    background-color: #f5f5f5;
}

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

.contact-form-section {
    padding: 120px 40px;
}

.form-intro {
    margin-bottom: 40px;
    color: #666;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f8f8f8;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #666;
}

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

.btn-accept {
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

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

.btn-reject {
    padding: 12px 24px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #d0d0d0;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-reject:hover {
    border-color: #1a1a1a;
}

.page-hero {
    padding: 100px 40px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

.about-content {
    padding: 80px 40px;
}

.about-visual {
    margin-bottom: 60px;
    background-color: #f5f5f5;
}

.about-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.expertise-section {
    padding: 100px 40px;
    background: #fafafa;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.expertise-item p {
    color: #666;
    font-size: 16px;
}

.approach-section {
    padding: 100px 40px;
}

.approach-steps {
    display: flex;
    gap: 60px;
}

.step {
    flex: 1;
}

.step-number {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 16px;
    font-weight: 600;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.values-section {
    padding: 100px 40px;
    background: #fafafa;
}

.services-detail {
    padding: 80px 40px;
}

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

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

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

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 13px;
    color: #888;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-section {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
}

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

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.contact-info-section {
    padding: 80px 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.email-display {
    font-weight: 500;
    color: #1a1a1a;
}

.contact-note {
    margin-top: 12px;
    font-size: 14px;
    color: #888;
}

.contact-visual {
    width: 100%;
    height: 500px;
    margin: 60px 0;
    background-color: #f5f5f5;
}

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

.contact-approach {
    padding: 80px 40px;
    background: #fafafa;
}

.thanks-section {
    padding: 120px 40px;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.next-steps {
    padding: 100px 40px;
    background: #fafafa;
}

.steps-grid {
    display: flex;
    gap: 60px;
}

.step-item {
    flex: 1;
}

.step-num {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 16px;
    font-weight: 600;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 16px 0 16px 24px;
}

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

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

.legal-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .split-content,
    .service-block {
        flex-direction: column;
    }

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

    .services-minimal {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}