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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0066cc;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #cccccc;
}

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

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

.btn-cta {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-cta:hover {
    background-color: #0052a3;
}

.btn-cta-secondary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 100px 0;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    line-height: 1.3;
    font-weight: 700;
}

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

.visual-block {
    flex: 1;
    background-color: #e0e0e0;
}

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

.problem-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.problem-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.problem-card p {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.6;
}

.services-showcase {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 400px;
}

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

.service-details {
    flex: 1;
    padding: 20px 0;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
}

.trust-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

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

.trust-item p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.7;
}

.cta-form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.cta-form-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

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

.footer-column p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.page-header {
    padding: 80px 0 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #cccccc;
}

.about-content {
    padding: 100px 0;
}

.values-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.experience-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.approach-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
}

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

.step-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-list {
    list-style-position: inside;
    margin-bottom: 20px;
}

.service-list li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 8px;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 500px;
}

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

.service-cta {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.service-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-cta p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
}

.contact-page-content {
    padding: 80px 0;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 40px;
}

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

.info-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.emergency-note {
    margin-top: 12px;
    font-size: 14px;
    color: #0066cc;
    font-weight: 600;
}

.contact-visual-block {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 600px;
}

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

.how-to-reach {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.how-to-reach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.reach-methods {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.method-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #0052a3;
}

.faq-section {
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 40px;
}

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

.faq-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

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

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.next-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #0066cc;
}

.step p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.selected-service {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 2px solid #e5e5e5;
}

.selected-service h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.selected-service p {
    font-size: 20px;
    color: #0066cc;
    font-weight: 600;
}

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

.urgent-note {
    background-color: #fff3cd;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

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

.urgent-note p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-content {
    padding: 80px 0;
}

.legal-text {
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-text p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-text ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal-text ul li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .problem-grid,
    .trust-grid,
    .values-grid,
    .approach-steps,
    .reach-methods,
    .next-steps {
        flex-direction: column;
    }

    .section-header-center h2,
    .trust-section h2,
    .values-section h2,
    .approach-section h2,
    .how-to-reach h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }
}