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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2c5f7f;
    --accent-color: #d4a574;
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

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

.main-nav {
    background-color: var(--bg-white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.article-header {
    margin-bottom: 48px;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.article-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.article-meta {
    margin-bottom: 32px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
}

.lead-paragraph {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.article-body h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.article-image {
    margin: 48px 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-image figcaption {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-light);
    text-align: center;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

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

.citation:hover {
    text-decoration: underline;
}

.inline-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 32px 0;
    transition: var(--transition);
}

.inline-cta:hover {
    background-color: #c29563;
    transform: translateY(-2px);
}

.insight-block {
    background-color: var(--bg-light);
    padding: 28px;
    border-left: 4px solid var(--accent-color);
    margin: 32px 0;
}

.insight-block h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.strategy-list {
    list-style: none;
    margin: 32px 0;
}

.strategy-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.strategy-list strong {
    color: var(--primary-color);
}

.testimonial {
    background-color: var(--bg-light);
    padding: 32px;
    margin: 48px 0;
    border-radius: 8px;
    font-style: italic;
    font-size: 20px;
}

.testimonial cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.section-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 32px 0;
    transition: var(--transition);
}

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

.mistake-block {
    margin: 32px 0;
    padding: 24px;
    background-color: #fff5f5;
    border-left: 4px solid #e85d75;
    border-radius: 4px;
}

.mistake-block h3 {
    color: #c53030;
    margin-top: 0;
}

.service-preview {
    background-color: var(--bg-light);
    padding: 28px;
    margin: 24px 0;
    border-radius: 8px;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 16px;
}

.text-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 16px;
}

.text-link:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

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

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

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

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.disclaimer {
    background-color: #fffbf0;
    border: 1px solid #f0e5c8;
    padding: 32px;
    margin: 48px 0;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.7;
}

.references {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.references h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.references ol {
    padding-left: 24px;
}

.references li {
    margin-bottom: 12px;
}

.references a {
    color: var(--secondary-color);
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 48px 24px 24px;
    margin-top: 64px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
}

.sticky-cta-btn {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background-color: #c29563;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 2px solid var(--border-color);
    padding: 24px;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    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: 24px;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background-color: #e0e0e0;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-section {
    margin-bottom: 64px;
}

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

.about-image {
    width: 40%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    margin-bottom: 64px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 48px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.approach-section {
    margin-bottom: 64px;
}

.approach-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.approach-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.approach-image {
    width: 40%;
    border-radius: 8px;
}

.experience-section {
    margin-bottom: 64px;
}

.experience-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.experience-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cta-section {
    background-color: var(--bg-light);
    padding: 64px;
    border-radius: 8px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 18px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    font-size: 18px;
    text-align: center;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border-color);
}

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

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-top: 24px;
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.service-includes h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.service-pricing .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.service-pricing .price-note {
    font-size: 14px;
    color: var(--text-light);
}

.service-image {
    width: 400px;
    border-radius: 8px;
}

.service-cta {
    text-align: center;
    padding: 64px 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-top: 64px;
}

.service-cta h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-info-section {
    display: flex;
    gap: 64px;
    margin-bottom: 64px;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

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

.contact-block p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.location-image {
    width: 100%;
    border-radius: 8px;
}

.contact-text {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-message {
    font-size: 18px;
    margin-bottom: 24px;
}

.thanks-service {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-weight: 600;
}

.thanks-info {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
}

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-updated,
.legal-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 16px 24px;
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-toggle {
        display: block;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-body {
        font-size: 16px;
    }

    .lead-paragraph {
        font-size: 18px;
    }

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

    .about-image,
    .approach-image {
        width: 100%;
    }

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

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .service-details {
        flex-direction: column;
    }

    .service-pricing {
        text-align: left;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    .sticky-cta {
        bottom: 12px;
        right: 12px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}