:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #ed8936;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #ffffff;
    --bg-alt: #f7fafc;
    --bg-dark: #1a202c;
    --border: #e2e8f0;
    --success: #48bb78;
    --max-width: 720px;
    --wide-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

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

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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background: var(--bg-alt);
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 12px;
}

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

.main-nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

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

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

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

/* Hero Editorial */
.hero-editorial {
    padding: 80px 24px 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-editorial h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-editorial .lead {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-image-wrap {
    margin: 40px auto 0;
    max-width: 900px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 48px 0 20px;
}

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

.inline-image {
    margin: 40px -60px;
    background: var(--bg-alt);
    border-radius: 6px;
    overflow: hidden;
}

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

.inline-image figcaption {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

/* CTA Inline */
.cta-inline {
    background: var(--primary);
    color: white;
    padding: 32px 40px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: center;
}

.cta-inline h3 {
    color: white;
    margin: 0 0 12px;
    font-size: 22px;
}

.cta-inline p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn:hover {
    background: #dd6b20;
    color: white;
    transform: translateY(-1px);
}

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

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

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

.btn-light:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.service-card {
    flex: 1 1 320px;
    background: white;
    border-radius: 10px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

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

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

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

/* Testimonials */
.testimonials-section {
    padding: 80px 24px;
}

.testimonial-item {
    max-width: var(--max-width);
    margin: 0 auto 48px;
    padding: 32px;
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
}

.testimonial-item blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
}

.testimonial-item cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

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

.about-content {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.contact-grid {
    display: flex;
    gap: 48px;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
}

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

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-form-wrap {
    flex: 1;
    background: white;
    padding: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

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

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 24px 32px;
}

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

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

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--accent);
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

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

.disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

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

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

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

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

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

.legal-content h2 {
    font-size: 22px;
    color: var(--secondary);
    margin: 36px 0 16px;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: white;
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 60px 24px;
    text-align: center;
}

.page-hero h1 {
    font-size: 38px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    color: white;
    padding: 48px 24px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Team Section */
.team-section {
    padding: 80px 24px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.team-card {
    flex: 0 1 280px;
    text-align: center;
}

.team-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--border);
    margin: 0 auto 16px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
}

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

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }

    .main-nav.active {
        display: flex;
    }

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

    .hero-image-wrap img {
        height: 280px;
    }

    .inline-image {
        margin: 32px 0;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

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

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