* {
    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: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c2c2c;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-sub {
    font-size: 24px;
    font-weight: 300;
}

.story-intro {
    padding: 80px 20px;
    background: #f9f9f9;
}

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

.narrow-content.centered {
    text-align: center;
}

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.problem-amplify {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.text-section {
    flex: 1;
}

.text-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.image-section {
    flex: 1;
    background-color: #f0f0f0;
}

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

.insight-reveal {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-reveal h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #ffffff;
}

.insight-reveal p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #e0e0e0;
}

.solution-intro {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.split-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.trust-building {
    padding: 100px 20px;
    background: #f4f4f4;
}

.trust-stat {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    margin-top: 16px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.benefits-section {
    padding: 100px 20px;
    background: #ffffff;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    color: #2c2c2c;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 20px;
}

.services-highlight {
    padding: 100px 20px;
    background: #f9f9f9;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    max-width: 320px;
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 24px 16px;
    color: #4a4a4a;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 24px 16px;
}

.btn-select {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 24px 24px;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.btn-select.selected {
    background: #28a745;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 48px;
    border-radius: 8px;
}

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

.form-intro {
    font-size: 17px;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

.form-row label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-row input {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #ffffff;
}

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

.form-row input[readonly] {
    background: #e9e9e9;
    cursor: not-allowed;
}

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    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: 32px;
    flex-wrap: wrap;
}

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

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

.btn-cookie {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #0052a3;
}

.btn-cookie.reject {
    background: #666;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #555;
}

.page-header {
    padding: 80px 20px 60px;
    background: #f9f9f9;
    text-align: center;
}

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

.page-intro {
    font-size: 20px;
    color: #4a4a4a;
}

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

.values-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.team-approach {
    padding: 80px 20px;
    background: #ffffff;
}

.cta-block {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.btn-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.btn-primary.highlight {
    background: #28a745;
}

.btn-primary.highlight:hover {
    background: #218838;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #0066cc;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0066cc;
    color: #ffffff;
}

.services-detailed {
    padding: 40px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-full {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-full:last-child {
    border-bottom: none;
}

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

.service-full.featured {
    background: #f9f9f9;
    padding: 48px;
    border-radius: 8px;
    border: 2px solid #0066cc;
}

.service-image {
    flex: 1;
    background-color: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.price-note {
    font-size: 16px;
    color: #28a745;
    font-weight: 500;
}

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

.service-details h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #1a1a1a;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 28px;
}

.service-details ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    color: #2c2c2c;
}

.service-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 20px;
}

.service-process {
    padding: 80px 20px;
    background: #f9f9f9;
}

.process-steps {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.contact-info {
    padding: 60px 20px 80px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.contact-image {
    flex: 1;
    background-color: #f0f0f0;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 80px 20px;
    background: #f9f9f9;
}

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

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 16px;
    color: #28a745;
    font-weight: 600;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a4a4a;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #0066cc;
    margin-top: 24px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 60px 20px 80px;
}

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

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

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

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

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #0052a3;
}

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

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

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

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

    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .testimonials-flow {
        flex-direction: column;
    }

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

    .service-card {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .thanks-actions a {
        width: 100%;
    }
}