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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --success: #28a745;
    --border-color: #e1e8ed;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
}

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

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

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

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

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

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

.nav-minimal {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.editorial-layout {
    background-color: #ffffff;
}

.hero-editorial {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.hero-content-narrow h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.content-section {
    padding: 70px 30px;
}

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

.content-section.dark-section {
    background-color: var(--bg-dark);
    color: #ffffff;
}

.content-section.dark-section h2,
.content-section.dark-section h3 {
    color: #ffffff;
}

.content-section.dark-section p,
.content-section.dark-section li {
    color: #e1e8ed;
}

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

.editorial-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.editorial-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.editorial-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.editorial-content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.editorial-content li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.editorial-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefit-list li::before {
    content: '✓';
    color: var(--success);
}

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

.inline-cta-box h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 26px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

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

.testimonial-inline {
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    margin: 40px 0;
    background-color: var(--bg-light);
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
}

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

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 35px 0;
    box-shadow: var(--shadow);
}

.two-col-insight {
    display: flex;
    gap: 30px;
    margin: 35px 0;
}

.insight-item {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.insight-item h3 {
    margin-top: 0;
}

.strategy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 35px 0;
}

.strategy-card {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.strategy-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.strategy-card p {
    font-size: 16px;
    margin: 0;
}

.text-cta {
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.text-cta:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.comparison-block {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.comparison-side {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
}

.comparison-side.highlight {
    background-color: rgba(46, 204, 113, 0.1);
    border: 2px solid #2ecc71;
}

.comparison-side h3 {
    color: white;
    margin-top: 0;
}

.comparison-side ul {
    list-style: none;
    padding-left: 0;
}

.comparison-side li {
    padding-left: 25px;
}

.testimonial-full {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
}

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

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

.service-card {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid var(--secondary-color);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.service-header h3 {
    margin: 0;
    font-size: 26px;
    color: var(--text-dark);
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card p {
    font-size: 17px;
    margin-bottom: 20px;
}

.service-card ul {
    margin: 20px 0;
}

.btn-service {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-service:hover {
    background-color: #1e4a6d;
    transform: translateY(-2px);
}

.editorial-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin-top: 35px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--primary-color);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.final-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a6d 100%);
    color: white;
}

.final-section h2,
.final-section h3,
.final-section p {
    color: white;
}

.final-cta-block {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 60px 30px 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8c5d6;
}

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

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

.footer-section ul li a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d6;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a6d 100%);
    padding: 80px 30px;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.header-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.services-page,
.about-page,
.contact-page,
.thanks-page {
    min-height: 60vh;
}

.services-detailed {
    padding: 80px 30px;
}

.service-detail-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    position: relative;
}

.service-detail-card.featured-service {
    border: 2px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

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

.service-detail-header h2 {
    font-size: 32px;
    margin: 0;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.service-detail-card h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-card ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.service-detail-card li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.btn-service-detail {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-service-detail:hover {
    background-color: #1e4a6d;
    transform: translateY(-2px);
}

.booking-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
}

.about-story,
.about-approach,
.about-results,
.about-philosophy,
.about-cta {
    padding: 70px 30px;
}

.about-story {
    background-color: var(--bg-light);
}

.insight-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.insight-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 18px;
}

.insight-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.approach-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.about-testimonial {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
}

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

.belief-item {
    margin: 35px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a6d 100%);
    text-align: center;
    color: white;
}

.about-cta h2,
.about-cta p {
    color: white;
}

.contact-info-section {
    padding: 80px 30px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-card {
    flex: 1;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 20px;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.contact-faq {
    flex: 1;
}

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

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a6d 100%);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

.contact-cta-section h2,
.contact-cta-section p {
    color: white;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a6d 100%);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

.success-icon {
    margin-bottom: 30px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}

.thanks-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.thanks-service-info {
    margin-top: 35px;
}

.selected-service-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.selected-service-box h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
}

.service-name {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.next-steps,
.thanks-resources,
.thanks-contact,
.thanks-final {
    padding: 70px 30px;
}

.next-steps {
    background-color: var(--bg-light);
}

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

.step-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.resource-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

.resource-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-contact {
    background-color: var(--bg-light);
}

.contact-email,
.contact-hours {
    font-size: 18px;
    margin: 15px 0;
}

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

.legal-page {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

.legal-page .editorial-content {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 50px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px 30px;
        box-shadow: var(--shadow);
        display: none;
        gap: 20px;
    }

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

    .nav-menu a::after {
        display: none;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .sticky-cta-btn {
        display: block;
        text-align: center;
    }

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

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

    .editorial-content h2 {
        font-size: 28px;
    }

    .editorial-content h3 {
        font-size: 22px;
    }

    .editorial-content p,
    .editorial-content li {
        font-size: 16px;
    }

    .two-col-insight,
    .comparison-block {
        flex-direction: column;
    }

    .strategy-grid,
    .services-editorial {
        flex-direction: column;
    }

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

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

    .service-price {
        margin-top: 10px;
    }

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

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

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

    .approach-grid,
    .stats-grid,
    .contact-grid,
    .steps-grid,
    .resource-grid {
        flex-direction: column;
    }

    .approach-item,
    .stat-item,
    .step-item,
    .resource-card {
        flex: 1 1 100%;
    }

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