:root {
    --primary: #1a365d;
    --secondary: #2d5a87;
    --accent: #e8a838;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-cream: #fdf8f3;
    --bg-dark: #1a365d;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(26, 54, 93, 0.08);
    --shadow-lg: 0 12px 48px rgba(26, 54, 93, 0.12);
}

* {
    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);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

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

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

header {
    background-color: var(--white);
    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: 1100px;
    margin: 0 auto;
}

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

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

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

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

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

.hero-editorial {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
}

.hero-editorial .container {
    text-align: center;
}

.hero-editorial h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.hero-image-wrapper {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #d49730;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

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

.section {
    padding: 80px 24px;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.section-cream {
    background-color: var(--bg-cream);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
}

.editorial-content p {
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--text-light);
}

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

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

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

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

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.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: 24px;
    font-weight: 700;
    color: var(--accent);
}

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

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

.cta-inline h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

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

.cta-inline .btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 32px 0;
    border-left: 4px solid var(--accent);
}

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

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-dark);
}

.feature-content h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 15px;
}

.form-container {
    background-color: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45, 90, 135, 0.1);
}

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

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

footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 64px 24px 32px;
}

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

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.disclaimer {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 48px;
    font-size: 13px;
    color: var(--text-light);
    border-left: 3px solid var(--border);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    padding: 64px 24px;
}

.content-page .container {
    max-width: 800px;
}

.content-page h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 40px 0 16px;
}

.content-page h3 {
    font-size: 20px;
    color: var(--primary);
    margin: 32px 0 12px;
}

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

.content-page ul {
    margin: 16px 0 24px 24px;
    color: var(--text-light);
}

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

.contact-info {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
}

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

.contact-info p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-info strong {
    color: var(--text-dark);
}

.thanks-container {
    text-align: center;
    padding: 120px 24px;
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

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

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

.cookie-reject:hover {
    border-color: var(--white);
}

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

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

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

.about-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 48px 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 150px;
}

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

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

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

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

    nav ul.show {
        display: flex;
    }

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

    .hero-editorial .lead {
        font-size: 18px;
    }

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

    .section {
        padding: 56px 24px;
    }

    .section-title {
        font-size: 26px;
    }

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

    .cta-inline {
        padding: 32px 24px;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-content {
        gap: 32px;
    }

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

    .page-header {
        padding: 56px 24px;
    }

    .page-header h1 {
        font-size: 28px;
    }

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

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

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