/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a202c;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2c5282;
    text-decoration: underline;
}

/* Layout */
.blog-container {
    max-width: 100%;
    margin: 0 auto;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-title {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-image-placeholder {
    margin-top: 2rem;
}

.hero-image-placeholder img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.intro-text {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.key-stat {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
}

.author-bio {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.author-image-placeholder img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info p {
    margin-bottom: 0;
    color: #4a5568;
}

.cta-box {
    background: #edf2f7;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #3182ce;
    margin: 2rem 0;
}

.cta-link {
    color: #3182ce;
    font-weight: 600;
}

.cta-link:hover {
    color: #2c5282;
}

/* Table of Contents */
.toc-section {
    padding: 3rem 0;
    background: white;
}

.table-of-contents ol {
    list-style: none;
    counter-reset: toc-counter;
}

.table-of-contents li {
    counter-increment: toc-counter;
    margin-bottom: 0.75rem;
}

.table-of-contents li::before {
    content: counter(toc-counter, decimal-leading-zero);
    color: #3182ce;
    font-weight: 700;
    margin-right: 1rem;
}

.table-of-contents a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.table-of-contents a:hover,
.table-of-contents a.active {
    color: #3182ce;
}

.table-of-contents a.active::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #3182ce;
    border-radius: 2px;
}

/* Tip Sections */
.tip-section {
    padding: 4rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.tip-section:nth-child(even) {
    background-color: #f7fafc;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tip-number {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-header h2 {
    margin-bottom: 0;
    flex: 1;
}

.tip-image-placeholder {
    margin: 2rem 0;
}

.tip-image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #4299e1;
}

.highlight-box h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3182ce;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 0.5rem;
}

/* Strategy Steps */
.strategy-steps {
    margin: 2rem 0;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.step h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

.step ul {
    padding-left: 1.5rem;
}

.step li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* Example Boxes */
.example-box {
    background: #f0fff4;
    border: 1px solid #68d391;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.before-after {
    margin-top: 1rem;
}

.before, .after {
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
}

.before {
    background: #fed7d7;
    border-left: 4px solid #e53e3e;
}

.after {
    background: #c6f6d5;
    border-left: 4px solid #38a169;
}

/* Keyword Tabs */
.keyword-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #edf2f7;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #4a5568;
}

.tab-btn.active,
.tab-btn:hover {
    background: #3182ce;
    color: white;
}

.tab-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Quantification Examples */
.quantification-examples {
    margin: 2rem 0;
}

.example-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.example-category h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

.example-category ul {
    padding-left: 1.5rem;
}

.example-category li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

/* Pro Tips */
.pro-tip {
    background: linear-gradient(135deg, #fef5e7, #fbd38d);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #ed8936;
}

.pro-tip h4 {
    color: #744210;
    margin-bottom: 1rem;
}

/* Tailoring Phases */
.tailoring-phases {
    margin: 2rem 0;
}

.phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.phase h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* Checklist */
.checklist-box {
    background: #f0fff4;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #68d391;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.checklist input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

/* Summary Formula */
.summary-formula {
    margin: 2rem 0;
}

.formula-box {
    background: linear-gradient(135deg, #edf2f7, #e2e8f0);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.formula-part {
    background: #3182ce;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Accordion */
.example-accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: #f7fafc;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.accordion-header:hover {
    background: #edf2f7;
}

.accordion-header::after {
    content: '+';
    font-size: 1.2rem;
    color: #3182ce;
    transition: transform 0.2s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    padding: 1.5rem;
    max-height: 500px;
}

/* Mistakes Box */
.mistakes-box {
    margin: 2rem 0;
}

.mistake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.mistake-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mistake-item strong {
    color: #3182ce;
    display: block;
    margin-bottom: 1rem;
}

.avoid {
    color: #e53e3e;
    font-weight: 600;
}

.better {
    color: #38a169;
    font-weight: 600;
}

/* Proofreading Passes */
.proofreading-passes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pass-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pass-item h4 {
    color: #3182ce;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pass-item ul {
    padding-left: 1.5rem;
}

.pass-item li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

/* Tools Box */
.tools-box {
    margin: 2rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.tool-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.2s ease;
}

.tool-item:hover {
    transform: translateY(-2px);
}

.tool-item strong {
    color: #3182ce;
    display: block;
    margin-bottom: 0.5rem;
}

.tool-item p {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0;
}

/* Conclusion Section */
.conclusion-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.conclusion-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.conclusion-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Action Plan */
.action-plan {
    margin: 3rem 0;
}

.action-plan h3 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.action-steps {
    display: grid;
    gap: 1.5rem;
}

.action-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.step-number {
    background: rgba(255,255,255,0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    color: rgba(255,255,255,0.95);
}

.step-content strong {
    color: white;
}

/* Final CTA */
.final-cta {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    margin-top: 3rem;
}

.final-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #3182ce;
}

.cta-button.primary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #3182ce;
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #3182ce;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
    transition: all 0.2s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.back-to-top.visible {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tip-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        justify-content: center;
    }
    
    .formula-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .formula-part {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-step {
        flex-direction: column;
        text-align: center;
    }
    
    .mistake-grid,
    .tools-grid,
    .proofreading-passes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tip-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Enhanced Content Elements */
.tip-section h5 {
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

/* Additional Content Styles */

/* Framework Phases */
.proofreading-framework {
    margin: 2rem 0;
}

.framework-phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.framework-phase h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

.framework-phase h5 {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

/* Advanced Techniques */
.advanced-techniques {
    margin: 2rem 0;
}

.technique {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.technique h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* AI Tools */
.ai-tools {
    background: #edf2f7;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid #4299e1;
}

.ai-tools h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Industry Proofreading */
.industry-proofreading {
    margin: 2rem 0;
}

.industry-check {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.industry-check h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* Error Categories */
.error-categories {
    margin: 2rem 0;
}

.error-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.error-category h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* Final Checklist */
.final-checklist {
    margin: 3rem 0;
}

/* Submission Practices */
.submission-practices {
    margin: 2rem 0;
}

.practice-group {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.practice-group h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* Industry Examples */
.industry-examples {
    margin: 2rem 0;
}

.industry-group {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.industry-group h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* Industry Tailoring */
.industry-tailoring {
    margin: 2rem 0;
}

.tailoring-example {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tailoring-example h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* Workflow Steps */
.workflow-steps {
    margin: 2rem 0;
}

.workflow-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.workflow-step h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

/* Reframe Examples */
.reframe-example {
    background: #f0fff4;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #38a169;
}

.context {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Industry Summaries */
.industry-summaries {
    margin: 2rem 0;
}

.industry-summary {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.industry-summary h4 {
    color: #3182ce;
    margin-bottom: 1rem;
}

.industry-summary em {
    display: block;
    background: #edf2f7;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    font-style: normal;
    color: #4a5568;
}

/* Best Practices */
.best-practices {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.best-practices ul {
    padding-left: 1.5rem;
}

.best-practices li {
    margin-bottom: 1rem;
    color: #4a5568;
}

/* Service Highlights */
.service-highlights {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.service-highlights h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.service-highlights ul {
    padding-left: 1.5rem;
}

.service-highlights li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
}

/* Client Success */
.client-success {
    margin: 3rem 0;
}

.client-success h4 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.success-stat {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    text-align: center;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.success-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.success-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

/* CTA Options */
.cta-options {
    margin-top: 2rem;
}

.cta-options h4 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Contact Info */
.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-info h4 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Company Tagline */
.company-tagline {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .service-highlights,
    .contact-info {
        padding: 1.5rem;
    }
    
    .technique,
    .industry-check,
    .error-category,
    .practice-group,
    .industry-group,
    .tailoring-example,
    .workflow-step,
    .industry-summary {
        padding: 1rem;
    }
    
    .framework-phase {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .success-number {
        font-size: 2rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .back-to-top {
        display: none;
    }
    
    .hero-section {
        background: #f7fafc !important;
        color: #2d3748 !important;
    }
    
    .conclusion-section {
        background: #f7fafc !important;
        color: #2d3748 !important;
    }
    
    .service-highlights,
    .client-success,
    .contact-info {
        background: #f7fafc !important;
        color: #2d3748 !important;
    }
    
    .success-stat {
        background: #edf2f7 !important;
    }
    
    .success-number {
        color: #3182ce !important;
    }
}