/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    font-size: 16px;
}

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

p {
    color: #444444;
    font-weight: 400;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo .logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo .logo-link:hover {
    color: #1d4ed8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    background-color: #f0f7ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #666666;
    transition: 0.3s;
    border-radius: 2px;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    z-index: 999;
    transition: width 0.1s ease;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Article Header with Blue Gradient */
.article-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: #ffffff;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #e0e7ff;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #c7d2fe;
    font-size: 0.9rem;
    font-weight: 500;
}

.reading-time,
.article-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.article-content {
    max-width: none;
}

/* Introduction Section */
.intro-section {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.125rem;
    color: #555555;
    font-weight: 500;
    line-height: 1.7;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

/* Content Sections */
.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 1.875rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.content-section h3 {
    font-size: 1.375rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section h4 {
    font-size: 1.125rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

/* Highlight Boxes */
.highlight-box {
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid;
}

.highlight-box.warning {
    background: #fef2f2;
    border-color: #ef4444;
    color: #7f1d1d;
}

.highlight-box.warning h3 {
    color: #991b1b;
    margin-bottom: 0.5rem;
}

.highlight-box.info {
    background: #f0f9ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.highlight-box.success {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #15803d;
}

/* Timeline Overview */
.timeline-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.timeline-phase {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-phase:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.phase-duration {
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.phase-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.phase-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Phase Steps */
.phase-steps {
    margin: 2rem 0;
}

.step-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

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

.step-number {
    min-width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-header h3 {
    color: #1a1a1a;
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
}

.step-content p {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-checklist h4,
.goals-framework h4,
.skill-development h4 {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
}

.step-checklist ul,
.skill-development ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.step-checklist li,
.skill-development li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.step-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.skill-development li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.pro-tip {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.pro-tip strong {
    color: #1e40af;
    display: block;
    margin-bottom: 0.5rem;
}

/* Goals Framework */
.goals-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.goal-category {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.goal-category h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.goal-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.goal-category li {
    color: #555555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
    font-size: 0.95rem;
}

.goal-category li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

/* Skill Assessment */
.skill-assessment {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.skill-assessment h4 {
    color: #166534;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.skill-assessment p {
    color: #15803d;
    margin: 0;
}

/* Networking Strategies */
.networking-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.networking-channel {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.networking-channel:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.networking-channel h4 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.networking-channel p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Achievement Tracking */
.achievement-tracking h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.achievement-tracking ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.achievement-tracking li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.achievement-tracking li::before {
    content: '📝';
    position: absolute;
    left: 0;
}

.documentation-tip {
    background: #fffbeb;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.documentation-tip strong {
    color: #92400e;
    display: block;
    margin-bottom: 0.5rem;
}

/* Materials Checklist */
.materials-checklist h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.materials-checklist ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.materials-checklist li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.materials-checklist li::before {
    content: '📄';
    position: absolute;
    left: 0;
}

.materials-tip {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.materials-tip strong {
    color: #1e40af;
    display: block;
    margin-bottom: 0.5rem;
}

/* Search Strategy */
.search-strategy {
    margin: 2rem 0;
}

.search-channel {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.search-channel h4 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.search-channel p {
    color: #666666;
    margin-bottom: 1rem;
}

.search-channel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-channel li {
    color: #555555;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.search-channel li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

/* Interview Preparation */
.interview-prep h4,
.interview-practice h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.interview-prep ul,
.interview-practice ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.interview-prep li,
.interview-practice li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.interview-prep li::before,
.interview-practice li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

/* Discretion Guidelines */
.discretion-guidelines h4,
.performance-maintenance h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.discretion-guidelines ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.discretion-guidelines li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.discretion-guidelines li::before {
    content: '🤐';
    position: absolute;
    left: 0;
}

.performance-maintenance {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.performance-maintenance p {
    color: #7f1d1d;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

.cta-section.secondary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1a1a1a;
}

.cta-content h2 {
    color: inherit;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e0e7ff;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section.secondary .cta-content p {
    color: #666666;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #1e40af;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-button.primary {
    background: #2563eb;
    color: #ffffff;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section.secondary .cta-button.primary {
    background: #2563eb;
    color: #ffffff;
}

.cta-section.secondary .cta-button.secondary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #e5e7eb;
}

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

.cta-icon {
    font-size: 1.25rem;
}

/* Resignation Preparation */
.resignation-prep h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.resignation-prep ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.resignation-prep li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.resignation-prep li::before {
    content: '💼';
    position: absolute;
    left: 0;
}

.conversation-script {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.conversation-script h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    margin-top: 0;
}

.conversation-script p {
    color: #0f172a;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Documentation Preparation */
.documentation-prep h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.documentation-prep ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.documentation-prep li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.documentation-prep li::before {
    content: '📋';
    position: absolute;
    left: 0;
}

/* Information Security */
.information-security h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.information-security ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.information-security li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.information-security li::before {
    content: '🔒';
    position: absolute;
    left: 0;
}

.security-warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.security-warning strong {
    color: #991b1b;
    display: block;
    margin-bottom: 0.5rem;
}

/* Financial Transition */
.financial-transition h4,
.timing-considerations h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.financial-transition ul,
.timing-considerations ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.financial-transition li,
.timing-considerations li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.financial-transition li::before {
    content: '💰';
    position: absolute;
    left: 0;
}

.timing-considerations li::before {
    content: '⏰';
    position: absolute;
    left: 0;
}

/* Resignation Execution */
.resignation-execution h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.resignation-execution ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.resignation-execution li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.resignation-execution li::before {
    content: '💬';
    position: absolute;
    left: 0;
}

.common-responses {
    margin-top: 1.5rem;
}

.common-responses h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.response-scenario {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.response-scenario strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

/* Communication Strategy */
.communication-strategy h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.communication-strategy ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.communication-strategy li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.communication-strategy li::before {
    content: '📢';
    position: absolute;
    left: 0;
}

.messaging-template {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.messaging-template h4 {
    color: #166534;
    margin-bottom: 1rem;
    margin-top: 0;
}

.messaging-template p {
    color: #15803d;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Transfer Process */
.transfer-process h4,
.transfer-documentation h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.transfer-process ul,
.transfer-documentation ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.transfer-process li,
.transfer-documentation li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.transfer-process li::before,
.transfer-documentation li::before {
    content: '📤';
    position: absolute;
    left: 0;
}

/* Relationship Building */
.relationship-building h4,
.gratitude-examples h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.relationship-building ul,
.gratitude-examples ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.relationship-building li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.relationship-building li::before {
    content: '🤝';
    position: absolute;
    left: 0;
}

.gratitude-examples li {
    color: #555555;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 6px;
    border-left: 3px solid #10b981;
    font-style: italic;
}

/* Administrative Tasks */
.admin-checklist h4,
.exit-interview-tips h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.admin-checklist ul,
.exit-interview-tips ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.admin-checklist li,
.exit-interview-tips li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.admin-checklist li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.exit-interview-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

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

.scenario-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

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

.scenario-header h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin: 0;
}

.scenario-content h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.scenario-content ul {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.scenario-content li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.scenario-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.scenario-tip {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.scenario-tip strong {
    color: #1e40af;
    display: block;
    margin-bottom: 0.5rem;
}

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

.mistake-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #ef4444;
}

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

.mistake-icon {
    font-size: 2rem;
}

.mistake-header h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin: 0;
}

.mistake-content p {
    color: #555555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mistake-prevention {
    margin-top: 1.5rem;
}

.mistake-prevention h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0;
}

.mistake-prevention ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mistake-prevention li {
    color: #555555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.mistake-prevention li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Checklist Container */
.checklist-container {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.checklist-section {
    margin-bottom: 3rem;
}

.checklist-section:last-child {
    margin-bottom: 2rem;
}

.checklist-section h3 {
    color: #1a1a1a;
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #f8fafc;
}

.checklist-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    min-width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checklist-item input[type="checkbox"]:checked + .checkmark {
    background: #3b82f6;
    border-color: #3b82f6;
}

.checklist-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
}

.checklist-text {
    color: #555555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.checklist-item input[type="checkbox"]:checked ~ .checklist-text {
    color: #9ca3af;
    text-decoration: line-through;
}

.checklist-actions {
    text-align: center;
    margin-top: 2rem;
}

.copy-checklist-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.copy-checklist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sidebar-tools {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-tool {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.sidebar-tool:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.tool-icon {
    font-size: 1.25rem;
    min-width: 35px;
    text-align: center;
}

.tool-content h4 {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.tool-content p {
    color: #666666;
    font-size: 0.8rem;
    margin: 0;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: block;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.related-article:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.related-article h4 {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.related-article p {
    color: #666666;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 2rem;
    }

    .timeline-overview {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .goals-framework {
        grid-template-columns: 1fr;
    }

    .networking-strategies {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .scenarios-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .mistakes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .container {
        padding: 0 15px;
    }

    .article-header {
        padding: 3rem 0;
    }

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

    .article-subtitle {
        font-size: 1.125rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-overview {
        grid-template-columns: 1fr;
    }

    .goals-framework {
        grid-template-columns: 1fr;
    }

    .networking-strategies {
        grid-template-columns: 1fr;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .mistakes-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-container {
        padding: 1rem;
    }

    .content-section {
        margin-bottom: 3rem;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .progress-bar,
    .sidebar,
    .cta-section,
    .footer {
        display: none;
    }

    .main-content {
        margin-top: 0;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .article-header {
        background: none;
        color: #1a1a1a;
    }
}