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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    background: #4a90e2;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #357abd;
}

.btn-cookie.btn-secondary {
    background: transparent;
    border: 1px solid white;
}

.btn-cookie.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.header-editorial {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

.editorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.hero-image-wrapper {
    width: 100%;
    margin-top: 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-block {
    margin-bottom: 3.5rem;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    color: #2c7be5;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c7be5;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: #1a5bb8;
    border-bottom-color: #1a5bb8;
}

.story-section {
    margin-bottom: 4rem;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.insight-block {
    background: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #e74c3c;
    margin: 3rem 0;
    border-radius: 4px;
}

.insight-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.insight-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.services-preview {
    margin: 4rem 0;
    padding: 3rem 0;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.section-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #2c7be5;
    background: #f7faff;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2c7be5;
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7be5;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background: #2c7be5;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #1a5bb8;
}

.testimonial-inline {
    background: #fff8e1;
    padding: 2.5rem;
    margin: 4rem 0;
    border-radius: 8px;
    border-left: 4px solid #ffb300;
}

.testimonial-inline blockquote {
    border: none;
    padding: 0;
}

.testimonial-inline p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2a2a2a;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    display: block;
    font-size: 0.95rem;
    color: #5a5a5a;
    font-style: normal;
    font-weight: 600;
}

.content-image-wrapper {
    margin: 2.5rem 0;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin: 4rem 0;
    color: white;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.trust-section {
    margin: 4rem 0;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.form-section {
    margin: 5rem 0;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

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

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.final-cta {
    margin: 5rem 0;
    text-align: center;
}

.final-cta-content {
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.final-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.final-cta p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.btn-cta-alt {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.btn-cta-alt:hover {
    background: #c0392b;
}

.footer-editorial {
    background: #2c2c2c;
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

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

.footer-brand strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

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

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

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

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

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .nav-minimal {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    max-width: 600px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    max-width: 500px;
    width: 100%;
}

.thanks-details p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #2c7be5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #1a5bb8;
}

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.contact-block {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c7be5;
}

.contact-block h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

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

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2rem;
    font-style: italic;
}

.services-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.services-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.about-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-page h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.about-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}