:root {
    --color-primary: #1a365d;
    --color-secondary: #2c5282;
    --color-accent: #ed8936;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --content-width: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    font-size: 17px;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.content-narrow {
    max-width: var(--content-width);
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    margin: 6px 0;
    transition: transform 0.3s ease;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 24px 60px;
    background-color: var(--color-bg-alt);
}

.hero-editorial .content-narrow {
    text-align: center;
}

.hero-category {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 3px;
    margin-bottom: 24px;
}

.hero-editorial h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.25;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-meta {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.hero-meta span {
    margin: 0 8px;
}

.hero-image-container {
    margin-top: 40px;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Article Content */
.article-content {
    padding: 60px 24px;
}

.article-content p {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--color-primary);
    margin: 48px 0 24px;
    font-weight: 400;
}

.article-content h3 {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin: 36px 0 16px;
    font-weight: 600;
}

.inline-image {
    margin: 40px 0;
    background-color: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.inline-image figcaption {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    background-color: var(--color-bg-alt);
    font-style: italic;
}

.pullquote {
    margin: 48px 0;
    padding: 32px 40px;
    border-left: 4px solid var(--color-accent);
    background-color: var(--color-bg-alt);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-secondary);
}

/* CTA Inline */
.cta-inline {
    margin: 48px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 8px;
    text-align: center;
}

.cta-inline h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.cta-inline p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #dd6b20;
    color: #fff;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 80px 24px;
    background-color: var(--color-bg-alt);
}

.services-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.services-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--color-text-light);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background-color: var(--color-bg);
    border-radius: 8px;
    padding: 32px;
    flex: 1 1 320px;
    max-width: 380px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card-image {
    width: 100%;
    height: 180px;
    background-color: #cbd5e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
}

.service-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-light);
}

/* About Section */
.about-section {
    padding: 80px 24px;
}

.about-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 400px;
    background-color: #cbd5e0;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-content {
    flex: 1 1 400px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--color-text);
}

/* Contact Form Section */
.contact-section {
    padding: 80px 24px;
    background-color: var(--color-bg-dark);
    color: #fff;
}

.contact-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 560px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

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

.form-group select option {
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

/* Footer */
.site-footer {
    background-color: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 24px auto 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 20px 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--color-accent);
}

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #dd6b20;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

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

/* Legal Pages */
.legal-page {
    padding: 80px 24px;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 32px;
    text-align: center;
}

.legal-content {
    max-width: var(--content-width);
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 32px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
}

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

.legal-content li {
    margin-bottom: 8px;
}

/* Thanks Page */
.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 560px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #c6f6d5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: #22543d;
}

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* Contact Info Page */
.contact-info-section {
    padding: 80px 24px;
}

.contact-info-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 40px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-detail-card {
    flex: 1 1 280px;
    background-color: var(--color-bg-alt);
    padding: 32px;
    border-radius: 8px;
}

.contact-detail-card h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.contact-detail-card p {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-image-container img {
        height: 300px;
    }

    .about-inner {
        flex-direction: column;
    }

    .about-image img {
        height: 280px;
    }

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

    .pullquote {
        padding: 24px;
        font-size: 1.2rem;
    }

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