* {
    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;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

.hero-minimal {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-minimal h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

.intro-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.problem-section {
    padding: 8rem 2rem;
    background: #f8f9fa;
}

.problem-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.insight-section {
    padding: 8rem 2rem;
    background: #ffffff;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.insight-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

.trust-section {
    padding: 8rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

blockquote {
    border-left: 3px solid #ffffff;
    padding-left: 2rem;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

blockquote footer {
    font-size: 1rem;
    color: #ccc;
    font-style: normal;
}

.services-section {
    padding: 8rem 2rem;
    background: #f8f9fa;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.services-minimal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-select-service {
    padding: 0.75rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #333;
}

.form-section {
    padding: 8rem 2rem;
    background: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.selected-service-text {
    text-align: center;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 600;
}

.booking-form {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.final-cta-section {
    padding: 8rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-copy {
    color: #999;
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.sticky-cta a:hover {
    background: #333;
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
    padding: 1.5rem;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-cookie-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #ddd;
}

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

.page-hero {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.expertise-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.expertise-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.expertise-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

.approach-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.approach-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-detail-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #666;
}

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

.contact-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-item h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

.contact-note {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-note p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.contact-note a {
    color: #1a1a1a;
    text-decoration: underline;
}

.thanks-hero {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
}

.thanks-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.step-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.thanks-cta {
    padding: 6rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

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

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

.btn-secondary {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.btn-text {
    padding: 1rem 2rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-text:hover {
    opacity: 0.7;
}

.legal-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-update {
    color: #999;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #333;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    border: 1px solid #e8e8e8;
    text-align: left;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .large-text {
        font-size: 1.3rem;
    }

    .problem-section h2,
    .insight-section h2,
    .services-section h2,
    .form-section h2,
    .final-cta-section h2,
    .values-section h2,
    .expertise-section h2,
    .approach-section h2,
    .thanks-content h2 {
        font-size: 2rem;
    }

    .page-hero h1,
    .thanks-hero h1,
    .legal-content h1 {
        font-size: 2.2rem;
    }

    blockquote p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
}