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

body {
    font-family: Georgia, 'Times New Roman', 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: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary {
    background-color: #2b7de9;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e6bd8;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #5a5a5a;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #4a4a4a;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #999;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-container {
    background-color: #ffffff;
}

.story-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px;
}

.article-hero {
    padding-top: 50px;
    margin-bottom: 40px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8e8e8;
}

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

.article-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 18px;
}

.lead-text {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.6;
    font-style: italic;
}

.story-section {
    margin-bottom: 50px;
}

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

.story-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 40px;
}

.inline-image,
.service-inline-image {
    width: 100%;
    margin: 35px 0;
    background-color: #e8e8e8;
}

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

.highlight-section {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 50px -40px;
    border-left: 4px solid #2b7de9;
}

.cta-inline {
    text-align: center;
    margin-top: 30px;
}

.service-story {
    margin: 30px 0;
}

.pricing-reveal {
    background-color: #fafafa;
    padding: 50px 40px;
    margin: 60px -40px;
}

.pricing-reveal h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pricing-reveal > p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.price-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.price-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.price-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #2b7de9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonial-inline {
    background-color: #f5f8fc;
    padding: 30px;
    margin: 35px 0;
    border-left: 3px solid #2b7de9;
}

.testimonial-inline p {
    font-size: 19px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.form-section {
    background-color: #f9f9f9;
    padding: 50px 40px;
    margin: 60px -40px 50px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.form-section > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.service-form button[type="submit"] {
    padding: 14px;
    background-color: #2b7de9;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-form button[type="submit"]:hover {
    background-color: #1e6bd8;
    transform: translateY(-1px);
}

.closing {
    padding: 40px 0 60px;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #242424;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #999;
}

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

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

@media (max-width: 768px) {
    .story-flow {
        padding: 0 20px;
    }

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

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

    .story-section p {
        font-size: 17px;
    }

    .story-section h2 {
        font-size: 28px;
    }

    .highlight-section,
    .pricing-reveal,
    .form-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 14px;
    }

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