/* Editorial Story Archetype - Peak Wren */

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

:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #c0392b;
    --text: #34495e;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --border: #bdc3c7;
}

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

.ad-disclosure {
    background: var(--light-bg);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 720px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.content-wrapper {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-section {
    margin-bottom: 50px;
}

.article-section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-section h3 {
    font-size: 24px;
    color: var(--primary);
    margin: 30px 0 15px;
}

.article-section p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: var(--light-bg);
    object-fit: cover;
}

.cta-inline {
    background: var(--secondary);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    display: inline-block;
    margin: 25px 0;
    border-radius: 4px;
    font-size: 17px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background: #d35400;
}

.service-card {
    background: var(--light-bg);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary);
}

.service-card h3 {
    margin-top: 0;
}

.service-price {
    font-size: 28px;
    color: var(--accent);
    font-weight: bold;
    margin: 15px 0;
}

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

.form-section {
    background: var(--light-bg);
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

label {
    font-size: 16px;
    color: var(--primary);
    font-weight: bold;
}

input[type="text"],
input[type="email"],
select,
textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    width: 100%;
}

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

button[type="submit"] {
    background: var(--accent);
    color: var(--white);
    padding: 16px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #a93226;
}

.testimonial {
    background: var(--white);
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 10px;
    font-style: normal;
    color: var(--primary);
}

.benefits-list {
    list-style: none;
    margin: 25px 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 18px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 20px;
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 20px 30px;
    margin-top: 80px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.8;
    color: var(--light-bg);
}

.footer-section a {
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    margin: 40px 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

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

.cookie-reject {
    background: var(--white);
    color: var(--primary);
}

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

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

.thanks-page h1 {
    color: var(--secondary);
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-info {
    background: var(--light-bg);
    padding: 30px;
    margin: 30px 0;
    border-radius: 4px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-page h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 30px 0 15px;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-links {
        gap: 15px;
    }

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

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

    .article-section h2 {
        font-size: 26px;
    }

    .article-section p {
        font-size: 16px;
    }
}
