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

:root {
    --color-primary: #1a3a52;
    --color-secondary: #2c5f7e;
    --color-accent: #c77d31;
    --color-text: #2d2d2d;
    --color-text-light: #5a5a5a;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #e0e0e0;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 82, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

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

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

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

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

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

.main-header {
    background-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-nav {
    padding: 0 20px;
}

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

.brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-article {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.text-column {
    width: 100%;
}

.narrative-intro,
.insight-block,
.problem-amplification,
.trust-building,
.testimonials-inline,
.form-section,
.disclaimer-section,
.about-intro,
.team-approach,
.values-section,
.expertise-areas,
.collaboration-cta,
.services-intro,
.contact-info-section,
.location-context,
.thanks-message-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 25px;
}

p {
    margin-bottom: 20px;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    margin-top: 40px;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    margin-top: 30px;
}

.inline-cta {
    margin: 35px 0;
}

.text-link-cta {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.text-link-cta:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.feature-image-inline {
    width: 100%;
    margin: 40px 0;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.editorial-list {
    margin: 25px 0;
    padding-left: 25px;
}

.editorial-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.services-narrative {
    margin: 60px 0;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.service-card-item {
    background-color: var(--color-background-alt);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e8eef2;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-top: 0;
    color: var(--color-primary);
}

.service-content p {
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}

.price-label {
    font-weight: 600;
    color: var(--color-text-light);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

.select-service-btn {
    background-color: var(--color-secondary);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.inline-reference {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--color-background-alt);
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

.inline-reference p {
    margin-bottom: 0;
}

.inline-reference a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.inline-reference a:hover {
    text-decoration: underline;
}

.testimonial-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--color-background-alt);
    border-left: 4px solid var(--color-secondary);
    font-style: italic;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 15px;
}

.testimonial-quote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.editorial-form {
    margin-top: 40px;
    padding: 40px;
    background-color: var(--color-background-alt);
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #e8eef2;
    cursor: not-allowed;
}

.submit-btn {
    background-color: var(--color-accent);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #a96528;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fef9f5;
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.value-block {
    margin: 30px 0;
    padding: 25px;
    background-color: var(--color-background-alt);
    border-radius: 8px;
}

.value-block h3 {
    margin-top: 0;
}

.page-header-article {
    margin-bottom: 50px;
}

.page-header-article h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.services-detailed {
    margin: 60px 0;
}

.service-detail-block {
    margin: 60px 0;
}

.service-image-large {
    width: 100%;
    margin-bottom: 30px;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

.service-image-large img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-pricing-detail {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--color-background-alt);
    border-radius: 8px;
}

.contact-detail-block {
    margin: 35px 0;
}

.note-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.legal-page {
    padding: 40px 0;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.legal-list {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.legal-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--color-border);
    font-style: italic;
    color: var(--color-text-light);
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.cookie-table th {
    background-color: var(--color-background-alt);
    font-weight: 600;
    color: var(--color-primary);
}

.cookie-table td {
    background-color: white;
}

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

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

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 0;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.references-list a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}