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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --dark: #1a1a1a;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.main-nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Helvetica Neue', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.story-header {
    margin-bottom: 3rem;
    text-align: center;
}

.story-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.story-image {
    margin: 3rem 0;
    width: 100%;
}

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

.story-image-small {
    margin: 2.5rem 0;
    width: 100%;
}

.story-image-small img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.story-section {
    margin: 3rem 0;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary-color);
}

.story-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlight-box {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    margin: 3rem 0;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

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

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.btn-secondary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.testimonial-inline {
    background-color: #fafafa;
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--accent-color);
    margin: 3rem 0;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
}

.testimonial-inline p {
    margin-bottom: 1rem;
}

.testimonial-inline footer {
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.step {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.step p {
    font-size: 1rem;
    margin: 0;
    color: #555;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 6px;
    position: relative;
    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(--secondary-color);
    background-color: #fef9f5;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.form-container {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.closing-text {
    font-style: italic;
    color: #666;
    font-size: 1.05rem;
}

.main-footer {
    background-color: var(--dark);
    color: var(--white);
    margin-top: 5rem;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .story-header h1 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

    .process-steps {
        gap: 1.5rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: stretch;
    }

    .btn-accept, .btn-reject {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .story-header h1 {
        font-size: 1.7rem;
    }

    .service-price {
        font-size: 1.6rem;
    }
}
