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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #3498db;
    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: #27ae60;
    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 {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.main-content {
    max-width: 100%;
}

.hero-editorial {
    padding: 80px 20px 40px;
    background: #f8f9fa;
}

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.hero-image-inline {
    max-width: 1000px;
    margin: 0 auto;
}

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

.story-block {
    padding: 100px 20px;
}

.story-block.alt-bg {
    background: #fafbfc;
}

.text-narrow {
    max-width: 680px;
    margin: 0 auto;
}

.text-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.text-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #333;
}

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

.inline-cta-link a {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background 0.3s;
}

.inline-cta-link a:hover {
    background: #2980b9;
}

.image-section-full {
    margin: 60px 0;
}

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

.testimonial-inline {
    background: #fff;
    border-left: 4px solid #3498db;
    padding: 28px 32px;
    margin: 40px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: #444;
}

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

.centered-section {
    padding: 100px 20px;
    background: #ffffff;
}

.services-grid-editorial {
    max-width: 1100px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-editorial {
    background: #f8f9fa;
    padding: 36px 40px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card-editorial p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-cta {
    padding: 14px 28px;
    background: #2c3e50;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #34495e;
}

.form-section {
    padding: 100px 20px;
    background: #ecf0f1;
}

.main-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

.sticky-btn {
    padding: 18px 32px;
    background: #e74c3c;
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.thanks-page {
    padding: 120px 20px;
    text-align: center;
    min-height: 60vh;
}

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

.thanks-page p {
    font-size: 19px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 16px;
    color: #555;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.thanks-page a:hover {
    background: #2980b9;
}

.contact-page {
    padding: 80px 20px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 6px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.legal-page {
    padding: 80px 20px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #444;
}

.legal-container ul {
    margin: 16px 0 16px 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #444;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: left 0.3s;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text-narrow h1 {
        font-size: 32px;
    }

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

    .text-narrow h2 {
        font-size: 28px;
    }

    .text-narrow p {
        font-size: 16px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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