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

:root {
    --primary: #1a4d7a;
    --accent: #d4af37;
    --dark: #0f2537;
    --light: #f8f9fa;
    --text: #2c3e50;
    --border: #e1e8ed;
    --white: #ffffff;
}

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

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

header {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.hero-story {
    margin: 60px 0;
}

.hero-story h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-story .subtitle {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-style: italic;
}

.story-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 2px;
}

.story-content {
    margin: 50px 0;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
}

.story-content h2 {
    font-size: 2rem;
    margin: 50px 0 25px;
    color: var(--dark);
    font-weight: 400;
}

.story-content h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--primary);
    font-weight: 400;
}

.inline-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 2px;
    margin: 30px 0;
    transition: background 0.3s;
    font-size: 1rem;
}

.inline-cta:hover {
    background: var(--dark);
}

.highlight-box {
    background: var(--light);
    padding: 35px;
    margin: 50px 0;
    border-left: 4px solid var(--accent);
}

.highlight-box p {
    margin-bottom: 0;
}

.testimonial-inline {
    font-style: italic;
    color: var(--primary);
    padding: 30px 40px;
    margin: 50px 0;
    border-left: 3px solid var(--accent);
    background: #fafbfc;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--text);
}

.service-card-inline {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 30px;
    margin: 30px 0;
    transition: box-shadow 0.3s;
}

.service-card-inline:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card-inline h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card-inline .price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin: 15px 0;
}

.service-card-inline ul {
    list-style: none;
    margin: 20px 0;
}

.service-card-inline ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-card-inline ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--dark);
}

.urgency-banner {
    background: linear-gradient(135deg, var(--accent), #b8961f);
    color: var(--dark);
    padding: 25px;
    margin: 50px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.form-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sticky-cta span {
    color: var(--white);
    font-weight: 600;
}

.sticky-cta .cta-button {
    background: var(--accent);
    color: var(--dark);
}

.sticky-cta .cta-button:hover {
    background: #c19e2f;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.benefit-item {
    padding: 25px;
    border-left: 3px solid var(--primary);
    background: #fafbfc;
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

footer {
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
    margin-top: 80px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--primary);
}

.contact-info {
    margin: 40px 0;
}

.contact-info p {
    margin: 10px 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 37, 55, 0.98);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 2000;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

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

.cookie-buttons button:hover {
    opacity: 0.9;
}

.thanks-container {
    text-align: center;
    padding: 80px 20px;
}

.thanks-container h1 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.content-section {
    margin: 40px 0;
}

.content-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 30px 0 15px;
}

.content-section ul,
.content-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .hero-story h1 {
        font-size: 2rem;
    }

    .hero-story .subtitle {
        font-size: 1.1rem;
    }

    .story-image {
        height: 300px;
    }

    .story-content p {
        font-size: 1rem;
        text-align: left;
    }

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

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

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

    nav {
        gap: 15px;
    }

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