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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: 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-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

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

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

.nav-minimal {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #888;
    padding-left: 1rem;
    border-left: 1px solid #e0e0e0;
}

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

.story-flow {
    background-color: transparent;
}

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

.hero-image-wrapper {
    margin-bottom: 2rem;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
}

.page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.header-subtitle {
    font-size: 1.1rem;
    color: #666;
}

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.content-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.inline-image {
    margin: 2.5rem 0;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.content-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.inline-cta {
    display: inline-block;
    background-color: #4a90e2;
    color: #ffffff;
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #357abd;
}

.quote-block {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background-color: #f5f5f5;
    border-left: 4px solid #4a90e2;
}

.quote-block blockquote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 0.8rem;
}

.quote-block cite {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

.service-card-editorial {
    margin: 2rem 0;
    padding: 1.8rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
}

.service-card-editorial p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a90e2;
    margin: 1rem 0;
}

.select-service-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.testimonial-inline {
    margin: 1.5rem 0;
    padding: 1.2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-inline p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
    margin-top: 0.5rem;
}

.editorial-form {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

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

.submit-btn {
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #777;
    font-style: italic;
}

.service-detail-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-includes {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.service-includes h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.8rem 0;
}

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

.service-includes li {
    font-size: 0.95rem;
    color: #555;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 600;
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
}

.contact-info-block {
    margin: 2rem 0;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.email-display {
    color: #2c2c2c;
    font-weight: 500;
}

.thanks-header {
    text-align: center;
}

.thanks-content {
    text-align: left;
}

.confirmation-message {
    padding: 2rem;
    background-color: #f0f8ff;
    border-radius: 4px;
    border: 1px solid #d0e8ff;
}

.next-steps {
    margin: 2rem 0;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    font-size: 1rem;
    color: #555;
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 600;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #4a90e2;
}

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

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

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #e0e0e0;
        padding-top: 0.8rem;
    }

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

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

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

    .page-header h1 {
        font-size: 1.8rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .price-display {
        flex-direction: column;
        align-items: flex-start;
    }

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