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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #ddd;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: white;
}

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

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

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

.navigation {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.editorial-main {
    background: white;
}

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

.article-header {
    margin-bottom: 60px;
    text-align: center;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.article-lead {
    font-size: 20px;
    color: #666;
    font-style: italic;
}

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

.story-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #444;
}

.story-text em {
    font-style: italic;
    color: var(--secondary-color);
}

.inline-image {
    margin: 40px 0;
}

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

.highlight-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.highlight-box h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.insight-list {
    list-style: none;
    padding: 0;
}

.insight-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.cta-link {
    font-size: 18px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 4px;
    transition: all 0.3s;
}

.cta-link:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.testimonial-inline {
    border-left: 4px solid var(--secondary-color);
    padding-left: 32px;
    margin: 50px 0;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    font-style: italic;
    color: #555;
    margin-bottom: 16px;
}

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

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

.pattern-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 6px;
}

.pattern-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.pattern-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.dark-section {
    background: var(--primary-color);
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    margin: 60px 0;
}

.dark-section h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
}

.dark-section .story-text {
    color: rgba(255, 255, 255, 0.9);
}

.inline-cta.prominent {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: 50px 40px;
    border-radius: 8px;
    margin: 60px 0;
}

.inline-cta.prominent h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-section {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.05), white);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h3 {
    font-size: 24px;
    color: var(--primary-color);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #666;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.testimonial-block {
    background: var(--light-bg);
    padding: 32px;
    border-radius: 8px;
    margin: 24px 0;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    color: #444;
    margin-bottom: 16px;
}

.testimonial-block cite {
    font-size: 14px;
    color: #888;
    font-style: normal;
}

.form-section {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 8px;
    margin: 60px 0;
}

.form-section h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    width: 100%;
    padding: 16px 24px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.final-section {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.final-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.emphasis {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: italic;
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px 20px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }

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

    .story-text {
        font-size: 17px;
    }

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

    .story-article {
        padding: 40px 16px;
    }

    .highlight-box,
    .dark-section,
    .form-section {
        padding: 24px 20px;
    }

    .service-card {
        padding: 24px 20px;
    }

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

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

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}

.back-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-home:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

.page-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.page-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.page-content ul li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

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

.contact-info {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 18px;
    color: var(--text-color);
    margin: 0;
}