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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: #f44336;
    color: white;
}

.btn-reject:hover {
    background: #da190b;
}

.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.editorial-main {
    background: #fff;
}

.hero-editorial {
    position: relative;
    max-width: 100%;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 720px;
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-text-overlay h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    color: #555;
    font-style: italic;
}

.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.intro-section {
    margin-bottom: 48px;
}

.lead-paragraph {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.article-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.inline-cta {
    text-align: center;
    margin: 48px 0;
    padding: 28px 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.cta-link {
    font-size: 20px;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #b71c1c;
}

.cta-link-urgent {
    font-size: 19px;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 12px;
}

.story-section,
.insight-section,
.trust-section,
.process-section {
    margin-bottom: 56px;
}

.story-section h2,
.insight-section h2,
.trust-section h2,
.process-section h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-image {
    margin: 32px 0;
    width: 100%;
}

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

blockquote.testimonial-inline {
    border-left: 4px solid #1a1a1a;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    font-size: 19px;
    color: #333;
}

blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.testimonial-featured {
    background: #f5f5f5;
    padding: 36px;
    border-left: 6px solid #d32f2f;
    margin: 48px 0;
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
}

.service-card {
    background: #f9f9f9;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 12px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #d32f2f;
    margin-top: 16px;
}

.service-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.full-width-cta {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
    margin: 60px -20px;
    max-width: none;
}

.full-width-cta h2 {
    font-size: 34px;
    margin-bottom: 28px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary-large:hover {
    background: #b71c1c;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.benefit-item {
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #d32f2f;
}

.benefit-item h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 16px;
    margin: 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 32px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step p {
    font-size: 16px;
    margin: 0;
}

.form-section {
    background: #f5f5f5;
    padding: 48px 32px;
    margin: 60px -20px;
    max-width: none;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-push {
    margin-top: 56px;
    font-size: 19px;
    line-height: 1.7;
}

.footer-minimal {
    background: #1a1a1a;
    color: #fff;
    padding: 48px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

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

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

.footer-copy {
    font-size: 14px;
    color: #888;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #b71c1c;
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
}

.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.contact-item {
    padding: 24px;
    background: #f9f9f9;
    border-radius: 4px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    margin: 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

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

.about-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
}

.legal-page p,
.legal-page ul {
    font-size: 17px;
    margin-bottom: 16px;
}

.legal-page ul {
    padding-left: 32px;
}

.legal-page li {
    margin-bottom: 8px;
}

.thanks-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #4CAF50;
}

.thanks-page p {
    font-size: 19px;
    margin-bottom: 20px;
}

.thanks-page .btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .lead-paragraph {
        font-size: 19px;
    }

    .article-content p {
        font-size: 17px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}