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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 15px;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
}

.intro-hook {
    padding: 100px 20px;
    background: #fafafa;
}

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

.content-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.story-visual {
    padding: 120px 20px;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e5e5e5;
    object-fit: cover;
}

.insight-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.insight-cards {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.insight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e5e5e5;
}

.insight-card h4 {
    padding: 25px 25px 10px;
}

.insight-card p {
    padding: 0 25px 25px;
    font-size: 16px;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #2a2a2a;
    color: #ffffff;
}

.testimonial-inline blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #cccccc;
}

.services-reveal {
    padding: 120px 20px;
    background: #ffffff;
}

.section-intro {
    font-size: 19px;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

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

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-item img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.service-item h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
}

.form-section {
    padding: 100px 20px;
    background: #f5f5f5;
}

.main-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-trust {
    padding: 100px 20px;
    background: #ffffff;
}

.trust-points {
    list-style: none;
    margin-top: 30px;
}

.trust-points li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
}

.trust-points li:before {
    content: "✓";
    color: #1a1a1a;
    font-weight: 700;
    margin-right: 15px;
}

.site-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    font-size: 15px;
    color: #999;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    z-index: 10000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: #cccccc;
}

.page-hero {
    padding: 180px 20px 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-story {
    padding: 100px 20px;
    background: #ffffff;
}

.about-story img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
    background-color: #e5e5e5;
    object-fit: cover;
}

.team-section {
    padding: 100px 20px;
    background: #f8f8f8;
}

.approach-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.values-visual {
    padding: 100px 20px;
    background: #ffffff;
}

.timeline-section {
    padding: 100px 20px;
    background: #fafafa;
}

.timeline {
    margin-top: 60px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-left: 3px solid #1a1a1a;
    padding-left: 30px;
    margin-left: 20px;
}

.timeline-item .year {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 80px;
}

.services-detailed {
    padding: 80px 20px;
    background: #ffffff;
}

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

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

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

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e5e5e5;
    object-fit: cover;
}

.service-info {
    flex: 1;
    min-width: 300px;
}

.price-tag {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 20px;
}

.service-info ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.service-duration {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
}

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

.cta-section h2 {
    color: #ffffff;
}

.cta-section p {
    color: #cccccc;
    margin-bottom: 40px;
}

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

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    margin-left: 15px;
}

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

.contact-info {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

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

.location-visual {
    padding: 60px 20px;
    background: #f5f5f5;
}

.location-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e5e5e5;
}

.contact-faq {
    padding: 100px 20px;
    background: #ffffff;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

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

.thanks-hero {
    padding: 180px 20px 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.thanks-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thanks-next {
    margin: 60px 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.thanks-next ol {
    padding-left: 25px;
}

.thanks-next ol li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 10px;
}

.thanks-actions {
    margin-top: 50px;
}

.thanks-visual {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-visual img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    background-color: #e5e5e5;
    object-fit: cover;
}

.legal-content {
    padding: 180px 20px 80px;
    background: #ffffff;
}

.update-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

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

    .hero-overlay p {
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

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

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .nav-floating {
        position: relative;
        top: 0;
        transform: none;
        border-radius: 0;
    }

    .page-hero {
        padding: 120px 20px 60px;
    }

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

    .thanks-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}