* {
    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.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border-top: 3px solid #e8a838;
}

.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 {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background: #e8a838;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #d4972f;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

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

.article-hero {
    margin-bottom: 3rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.article-subtitle {
    font-size: 1.4rem;
    color: #5a5a5a;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

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

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

.article-intro {
    margin: 3rem 0;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.article-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.inline-cta-box {
    background: linear-gradient(135deg, #f8f4ed 0%, #fdf9f3 100%);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #e8a838;
    border-radius: 6px;
}

.inline-cta-box p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.btn-inline {
    display: inline-block;
    background: #e8a838;
    color: #1a1a1a;
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #d4972f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 168, 56, 0.3);
}

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

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

.story-content {
    font-size: 1.1rem;
}

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

.story-content p {
    margin-bottom: 1.5rem;
}

.insights-block {
    margin: 5rem 0;
    padding: 3rem 0;
}

.insights-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.insight-item {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.insight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e8a838;
    font-weight: 700;
}

.insight-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.quote-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.quote-section blockquote {
    border-left: 5px solid #e8a838;
    padding-left: 2rem;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: #3a3a3a;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #7a7a7a;
}

.case-study {
    margin: 5rem 0;
}

.case-study h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.case-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

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

.btn-sticky {
    display: block;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #e8a838;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 168, 56, 0.4);
}

.trust-section {
    margin: 5rem 0;
    padding: 3rem 2.5rem;
    background: #f8f4ed;
    border-radius: 10px;
}

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-section > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.trust-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #e8a838;
    margin-bottom: 1rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.testimonials-inline {
    margin: 5rem 0;
}

.testimonials-inline h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.testimonial {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-size: 1rem;
    color: #7a7a7a;
    font-style: normal;
    font-weight: 600;
}

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

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

.services-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #5a5a5a;
}

.service-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e8a838;
}

.btn-service {
    background: #1a1a1a;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-service:hover {
    background: #e8a838;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.urgency-section {
    margin: 5rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: #fff;
    border-radius: 10px;
    text-align: center;
}

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

.urgency-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-urgency {
    display: inline-block;
    background: #e8a838;
    color: #1a1a1a;
    padding: 1.1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: #d4972f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
}

.final-story {
    margin: 5rem 0;
}

.final-story h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.final-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.contact-form-section {
    margin: 6rem 0;
    padding: 4rem 3rem;
    background: #f8f4ed;
    border-radius: 10px;
}

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

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px 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: #e8a838;
}

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

.btn-submit:hover {
    background: #d4972f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.3);
}

.final-cta-section {
    margin: 6rem 0;
    text-align: center;
    padding: 3rem 2rem;
}

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

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #5a5a5a;
}

.btn-final {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #e8a838;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 168, 56, 0.4);
}

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

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e8a838;
}

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

@media (max-width: 768px) {
    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .article-title {
        font-size: 2.2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

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

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

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

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

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

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

    .btn-service {
        width: 100%;
    }
}