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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.65;
    color: #2c2c2c;
    background: #fafafa;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 28px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

nav a:hover {
    color: #0066cc;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
}

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

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    font-style: italic;
}

.article-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.story-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 48px;
}

.inline-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 4px;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 26px;
    margin: 40px 0 16px;
    font-weight: 600;
    color: #2a2a2a;
}

.content-section p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.pullquote {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    color: #0066cc;
    padding: 40px 0;
    margin: 48px 0;
    border-left: 4px solid #0066cc;
    padding-left: 32px;
}

.inline-cta {
    background: #0066cc;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    display: inline-block;
    margin: 32px 0;
    border-radius: 4px;
    font-size: 17px;
    transition: background 0.2s;
}

.inline-cta:hover {
    background: #0052a3;
}

.service-card-editorial {
    background: #ffffff;
    padding: 40px;
    margin: 24px 0;
    border-left: 3px solid #0066cc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 16px 0;
}

.price-detail {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.testimonial-inline {
    background: #f5f9fc;
    padding: 32px;
    margin: 48px 0;
    border-radius: 4px;
    font-style: italic;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    margin-top: 16px;
    color: #333;
}

.form-section {
    background: #ffffff;
    padding: 48px;
    margin: 60px 0;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.form-intro {
    font-size: 17px;
    color: #666;
    margin-bottom: 32px;
}

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

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

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #0066cc;
    color: #ffffff;
    padding: 16px 48px;
    font-size: 17px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #0052a3;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 20px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.sticky-cta a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 24px;
    z-index: 1001;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.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: opacity 0.2s;
}

.cookie-accept {
    background: #0066cc;
    color: #ffffff;
}

.cookie-reject {
    background: #666;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 32px;
    margin-top: 80px;
}

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

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

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

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

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 40px 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-intro {
    font-size: 22px;
    line-height: 1.6;
    color: #2a2a2a;
}

.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    margin: 32px 0;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.contact-item p {
    font-size: 16px;
    color: #666;
}

.thanks-message {
    text-align: center;
    padding: 80px 0;
}

.thanks-message h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #0066cc;
}

.thanks-message p {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
}

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

    nav ul {
        gap: 16px;
    }

    .hero-editorial h1 {
        font-size: 36px;
    }

    .pullquote {
        font-size: 22px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .form-section {
        padding: 32px 20px;
    }
}
