* {
    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: #1a1a1a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 40px;
}

.story-flow {
    background-color: #ffffff;
    padding: 60px 80px;
    border-radius: 2px;
}

.article-header {
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.intro-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    font-weight: 400;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 45px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.content-block h3 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #2c2c2c;
}

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.content-block ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.content-block ul li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.story-list {
    list-style: none;
    padding-left: 0;
}

.story-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 20px;
}

.story-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #666;
}

.inline-image {
    margin: 50px 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-inline {
    margin: 45px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #333333;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #1a1a1a;
}

.testimonial-inline blockquote {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #2c2c2c;
    margin: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.services-inline {
    margin: 60px 0;
}

.services-inline h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.service-card {
    background-color: #fafafa;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: #c0c0c0;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-card .select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: #333333;
}

.form-container {
    margin: 60px 0;
    padding: 45px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 12px;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 17px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

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

.btn-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #a0a0a0;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px 40px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    color: #4a4a4a;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #e0e0e0;
    color: #4a4a4a;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
}

.email-display {
    color: #4a4a4a;
}

.legal-text h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-text h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 14px;
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 18px;
}

.legal-text ul {
    margin-bottom: 20px;
}

.legal-text ul li {
    font-size: 16px;
    line-height: 1.7;
}

.legal-text a {
    color: #1a1a1a;
    text-decoration: underline;
}

.thanks-message {
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 30px 20px;
    }

    .story-flow {
        padding: 30px 24px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .intro-lead {
        font-size: 18px;
    }

    .content-block h2 {
        font-size: 26px;
    }

    .content-block p {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

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

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