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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
    --background: #fff;
    --light-bg: #f8f9fa;
    --overlay-bg: rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--background);
}

.ad-disclosure {
    background: #fffacd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-minimal {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.editorial-main {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--light-bg);
}

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

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

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

.article-body {
    margin-top: 50px;
}

.article-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-text p {
    margin-bottom: 25px;
}

.lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.article-text h2 {
    font-size: 1.9rem;
    margin: 50px 0 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.article-text h3 {
    font-size: 1.4rem;
    margin: 35px 0 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.article-text h4 {
    font-size: 1.15rem;
    margin: 25px 0 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.article-text ul, .article-text ol {
    margin: 20px 0 25px 30px;
}

.article-text li {
    margin-bottom: 10px;
}

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

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

.story-callout {
    background: var(--light-bg);
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.story-callout h3 {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    color: var(--primary-color);
}

.story-callout p {
    margin-bottom: 15px;
}

.story-callout p:last-child {
    margin-bottom: 0;
}

.cta-inline {
    background: var(--primary-color);
    color: var(--background);
    padding: 40px;
    margin: 50px 0;
    border-radius: 8px;
    text-align: center;
}

.cta-inline h3 {
    color: var(--background);
    margin: 0 0 15px 0;
    font-size: 1.6rem;
}

.cta-inline p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-bg);
}

.testimonial-block blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.services-preview {
    margin-top: 60px;
    padding: 50px 0;
    border-top: 2px solid var(--border-color);
}

.services-intro {
    text-align: center;
    margin-bottom: 45px;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

.service-card p {
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.6;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

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

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

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--accent-color);
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary-button:hover {
    background: var(--accent-color);
    color: var(--background);
}

.inquiry-section {
    margin: 60px 0;
    padding: 50px 40px;
    background: var(--light-bg);
    border-radius: 8px;
}

.inquiry-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.inquiry-content > p {
    margin-bottom: 30px;
    color: var(--light-text);
    font-size: 1.05rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

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

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

.submit-button {
    background: var(--accent-color);
    color: var(--background);
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.disclaimer-section {
    margin: 60px 0 40px;
    padding: 25px 30px;
    background: #fff9e6;
    border: 1px solid #ffe69c;
    border-radius: 6px;
}

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

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

.header-image-container {
    width: 100%;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--light-bg);
}

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

.header-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.values-section {
    margin: 40px 0;
}

.values-section h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.principle-item {
    margin-bottom: 30px;
}

.principle-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.principle-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.approach-callout {
    background: var(--light-bg);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.approach-callout p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.cta-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h2 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.service-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

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

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

.service-image-container {
    width: 100%;
    margin: 25px 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--light-bg);
}

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

.service-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.service-content ul {
    margin: 15px 0 20px 25px;
}

.service-content li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.services-inquiry {
    margin-top: 50px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.contact-info-section h2,
.contact-approach h2,
.contact-sectors h2,
.contact-locations h2,
.contact-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-detail p {
    color: var(--light-text);
    line-height: 1.7;
}

.contact-email {
    color: var(--text-color);
    font-weight: 600;
}

.hours-note {
    margin-top: 10px;
    font-size: 0.9rem;
    font-style: italic;
}

.approach-note {
    background: var(--light-bg);
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.approach-note p {
    margin: 0;
    font-style: italic;
    color: var(--light-text);
}

.sectors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.sector-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 6px;
}

.sector-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.sector-item p {
    margin: 0;
    color: var(--light-text);
    line-height: 1.6;
}

.cta-email {
    color: var(--text-color);
    font-weight: 600;
}

.thanks-page {
    text-align: center;
}

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

.thanks-message h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 40px;
}

.thanks-details,
.thanks-timeline,
.thanks-interim,
.thanks-contact {
    text-align: left;
    margin: 35px 0;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-details h2,
.thanks-interim h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-timeline h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.thanks-details p,
.thanks-timeline p,
.thanks-interim p,
.thanks-contact p {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.thanks-details ul,
.thanks-interim ul {
    margin: 15px 0 0 25px;
}

.thanks-details li,
.thanks-interim li {
    margin-bottom: 10px;
}

.thanks-interim a {
    color: var(--accent-color);
    text-decoration: none;
}

.thanks-interim a:hover {
    text-decoration: underline;
}

.email-display {
    color: var(--text-color);
    font-weight: 600;
}

.thanks-cta {
    margin-top: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

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

.legal-content h4 {
    font-size: 1.15rem;
    margin: 20px 0 10px;
    color: var(--secondary-color);
}

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    border: 1px solid var(--border-color);
}

.cookies-table thead {
    background: var(--light-bg);
}

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

.cookies-table th {
    font-weight: 600;
    color: var(--secondary-color);
}

.cookies-table td {
    color: var(--text-color);
}

.site-footer {
    background: var(--primary-color);
    color: var(--background);
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--background);
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--background);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 250px;
}

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

.cookie-button {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.cookie-button.accept:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

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

.cookie-link {
    color: var(--background);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: none;
}

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

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

    .editorial-main {
        padding: 40px 20px;
    }

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

    .subtitle {
        font-size: 1.1rem;
    }

    .article-text {
        font-size: 1.05rem;
    }

    .lead-paragraph {
        font-size: 1.2rem;
    }

    .article-text h2 {
        font-size: 1.6rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-meta {
        align-items: flex-start;
    }

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

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

    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}