/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e1e8ed;
    --success-color: #00b894;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 1rem;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: white;
}

.btn-accept:hover {
    background-color: #d63851;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-minimal {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Main Content - Editorial Style */
.main-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.editorial-header {
    margin-bottom: 3rem;
    text-align: left;
}

.headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
}

/* Editorial Images */
.editorial-image,
.editorial-image-small {
    margin: 3rem 0;
    width: 100%;
}

.editorial-image img,
.editorial-image-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.editorial-image-small {
    margin: 2rem 0;
}

/* Story Sections */
.story-section,
.insight-section,
.problem-amplification,
.solution-intro,
.methodology-section,
.final-thoughts,
.trust-section,
.values-section,
.expertise-section,
.achievements-section,
.mission-section,
.collaboration-section {
    margin: 3rem 0;
}

.story-section h2,
.insight-section h2,
.problem-amplification h2,
.solution-intro h2,
.methodology-section h2,
.final-thoughts h2,
.trust-section h2,
.values-section h2,
.expertise-section h2,
.achievements-section h2,
.mission-section h2,
.collaboration-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-section p,
.insight-section p,
.problem-amplification p,
.solution-intro p,
.methodology-section p,
.final-thoughts p,
.trust-section p,
.values-section p,
.expertise-section p,
.mission-section p,
.collaboration-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

/* Warning Signs */
.warning-signs {
    margin: 2rem 0;
}

.sign-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.sign-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.sign-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Impact List */
.impact-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.impact-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.impact-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Quote Block */
.quote-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.quote-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quote-block cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

/* Inline CTAs */
.inline-cta,
.inline-cta-bottom {
    margin: 2.5rem 0;
    text-align: center;
}

.cta-link,
.cta-link-alt {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-link:hover,
.cta-link-alt:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Services Showcase */
.services-showcase {
    margin: 3rem 0;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-features {
    margin: 1.5rem 0;
}

.service-features h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.service-time {
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials-inline {
    margin: 3rem 0;
}

.testimonials-inline h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-style: italic;
}

.testimonial cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

/* CTA Blocks */
.cta-block-major {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 8px;
}

.cta-block-major h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-block-major p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

/* Trust Elements */
.trust-elements {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Urgency Element */
.urgency-element {
    margin: 3rem 0;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.urgency-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #856404;
    margin: 0;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 69, 96, 0.5);
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Thanks Page */
.thanks-container {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.1rem;
    padding: 1rem;
    background-color: var(--bg-color);
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.steps-list {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 4px;
}

.thanks-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Contact Page */
.contact-info {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-map,
.contact-cta,
.contact-final {
    margin: 3rem 0;
}

.contact-teaser {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
}

.legal-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 0.95rem;
}

/* Additional Sections */
.services-intro,
.custom-solutions,
.pricing-faq,
.faq-contact {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.custom-list,
.expertise-list,
.partners-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.custom-list li,
.expertise-list li,
.partners-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.custom-list li:before,
.expertise-list li:before,
.partners-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1.3;
}

/* Values and Achievements */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.achievement {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    text-align: center;
}

.achievement h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.achievement p {
    font-size: 1rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .nav-wrapper {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .main-content {
        padding: 2rem 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .achievements {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.6rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .cta-block-major {
        padding: 2rem 1rem;
    }
}