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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 3px solid #4a90a4;
}

.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: #87ceeb;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background: #4a90a4;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #3a7084;
}

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

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

.header-minimal {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90a4;
}

.editorial-layout {
    max-width: 100%;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #d0d0d0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: center;
}

.hero-content-narrow h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
}

.story-section {
    background: #fff;
    padding: 80px 20px;
}

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

.narrow-column h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.narrow-column p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

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

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

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background: #f7f7f7;
    border-left: 4px solid #4a90a4;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

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

.services-preview {
    padding: 80px 20px;
    background: #fafafa;
}

.service-list-editorial {
    margin-top: 50px;
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.price-tag {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #4a90a4;
    margin-bottom: 20px;
}

.cta-inline {
    background: #4a90a4;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #3a7084;
    transform: translateY(-2px);
}

.image-break {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #c0c0c0;
}

.image-break img {
    width: 100%;
    height: 100%;
}

.approach-section {
    padding: 80px 20px;
    background: #fff;
}

.approach-points {
    margin-top: 40px;
}

.point {
    margin-bottom: 36px;
}

.point h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.point p {
    font-size: 16px;
    color: #444;
}

.form-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.contact-form-editorial {
    margin-top: 40px;
}

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

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

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

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

.submit-btn {
    background: #4a90a4;
    color: #fff;
    border: none;
    padding: 16px 48px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #3a7084;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff9e6;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.footer-minimal {
    background: #2c2c2c;
    color: #ccc;
    padding: 50px 20px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

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

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

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #444;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: #4a90a4;
}

.back-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #4a90a4;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #3a7084;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-content-narrow h1 {
        font-size: 32px;
    }

    .narrow-column h2 {
        font-size: 26px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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