* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

.nav-minimal {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

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

.hero-story {
    position: relative;
    height: 85vh;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-overlay h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    opacity: 0.95;
}

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

.section-title-inline {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 2px;
}

.problem-section {
    background: #2a2a2a;
    color: #fff;
    padding: 5rem 0;
}

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

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

.problem-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.problem-list {
    list-style: none;
    margin: 3rem 0;
}

.problem-list li {
    font-size: 1.15rem;
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    font-size: 2rem;
    color: #ff6b6b;
}

.problem-insight {
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ff6b6b;
}

.revelation-block {
    padding: 6rem 0;
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.trust-building {
    background: #f5f5f5;
    padding: 6rem 0;
    text-align: center;
}

.centered-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.centered-intro {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #4a4a4a;
    padding: 0 2rem;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 2px;
}

.value-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.story-section {
    padding: 5rem 0;
    background: #fff;
}

.story-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.testimonial-highlight {
    background: #fffbf0;
    padding: 2rem;
    border-left: 4px solid #d4a574;
    font-size: 1.2rem;
    margin-top: 2rem;
    font-style: italic;
}

.cta-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.cta-button-primary {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Arial', sans-serif;
    border-radius: 2px;
    transition: background 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
    background: #1a1a1a;
}

.benefits-reveal {
    padding: 6rem 0;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
}

.benefits-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 300;
    color: #d4a574;
    min-width: 70px;
}

.benefit-content h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.benefit-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.visual-showcase {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.showcase-text {
    font-size: 3rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.approach-section {
    padding: 6rem 0;
    background: #f5f5f5;
}

.approach-section h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 400;
    text-align: center;
}

.steps-vertical {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    background: #fff;
    padding: 3rem;
    border-left: 4px solid #2a2a2a;
}

.step-label {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.step h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.step p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-family: 'Arial', sans-serif;
}

.testimonials-inline {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.testimonials-inline h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-grid blockquote {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    background: #fff;
    border-top: 3px solid #d4a574;
    font-style: italic;
}

.testimonial-grid p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-grid cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
}

.urgency-section {
    padding: 5rem 0 3rem;
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.urgency-text {
    font-size: 1.2rem;
    color: #4a4a4a;
    font-style: italic;
}

.services-pricing {
    padding: 3rem 0 6rem;
    background: #fafafa;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #fff;
    padding: 3rem 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border: 2px solid #2a2a2a;
    position: relative;
}

.service-card.featured:before {
    content: "★ PLUS POPULAIRE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    color: #6a6a6a;
    font-family: 'Arial', sans-serif;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
}

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

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

.select-service {
    width: 100%;
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
}

.select-service:hover {
    background: #1a1a1a;
}

.form-section {
    padding: 6rem 0;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-align: center;
}

.form-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    background: #fafafa;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a2a2a;
    background: #fff;
}

.form-submit {
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Arial', sans-serif;
    margin-top: 1rem;
}

.form-submit:hover {
    background: #1a1a1a;
}

.final-push {
    padding: 6rem 0;
    background: #f5f5f5;
}

.final-push h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.final-push p {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.final-cta-text {
    font-size: 1.4rem;
    margin: 3rem 0 2rem;
    font-style: italic;
    color: #2a2a2a;
}

.cta-button-secondary {
    display: inline-block;
    background: #d4a574;
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 2px;
    transition: background 0.3s;
    margin-top: 1rem;
}

.cta-button-secondary:hover {
    background: #c49564;
}

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section p {
    font-size: 0.95rem;
    color: #aaa;
    font-family: 'Arial', sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: #d4a574;
    color: #fff;
}

.cookie-btn.reject {
    background: #fff;
    color: #2a2a2a;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

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

    .nav-links {
        gap: 1.5rem;
    }

    .values-grid,
    .testimonial-grid {
        flex-direction: column;
    }

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

    .cta-button-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}