:root {
    --primary: #1a365d;
    --secondary: #2c5282;
    --accent: #ed8936;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-cream: #fffaf0;
    --white: #ffffff;
    --border: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.ad-disclosure {
    background: var(--bg-cream);
    padding: 8px 15px;
    font-size: 0.75rem;
    color: var(--text-light);
    border-radius: 4px;
    margin-left: 15px;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.hero-editorial {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.hero-editorial h1 {
    font-size: 2.8rem;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    line-height: 1.3;
}

.hero-editorial .subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    opacity: 0.9;
}

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

.hero-image-container img {
    width: 100%;
    height: 400px;
    display: block;
}

.editorial-section {
    padding: 60px 20px;
}

.editorial-section:nth-child(even) {
    background: var(--bg-light);
}

.editorial-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.editorial-section p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.inline-image {
    margin: 40px 0;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 350px;
    display: block;
}

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

.cta-inline {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid var(--accent);
}

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

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

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

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

.btn-secondary:hover {
    background: var(--primary);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    height: 180px;
    background-color: var(--border);
    overflow: hidden;
}

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

.service-card-content {
    padding: 25px;
}

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

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.services-list li:last-child {
    border-bottom: none;
}

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

.service-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-meta {
    text-align: right;
}

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

.form-section {
    background: var(--primary);
    padding: 60px 20px;
    color: var(--white);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group select {
    cursor: pointer;
}

.testimonial-block {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-block cite {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-hero {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-hero-content {
    flex: 1;
    min-width: 300px;
}

.about-hero-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 350px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
}

.value-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

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

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

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-info-item span {
    color: var(--text-light);
}

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

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.disclaimer {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-container h1 {
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h1 {
    color: var(--primary);
    margin-bottom: 30px;
}

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

.legal-content p,
.legal-content li {
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(237, 137, 54, 0.4);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

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

    nav ul.active {
        display: flex;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .ad-disclosure {
        display: none;
    }
}
