/* =================================================================
   MASTER CSS FILE - Agency Business Systems
   Combines all styles from 19 pages into one consolidated file
   ================================================================= */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Alternative body color for index page */
body.index-page {
    color: #25049c;
}

/* Alternative background for some blog articles */
body.white-bg {
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================================================
   HEADER STYLES
   ================================================================= */

header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

nav a:hover, nav a.active {
    background: rgba(255,255,255,0.2);
}

/* =================================================================
   BREADCRUMB STYLES
   ================================================================= */

.breadcrumb {
    background: #e9ecef;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #1e3c72;
    text-decoration: none;
}

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

/* Alternative breadcrumb style for blog articles */
.breadcrumb.white-bg {
    background: white;
    border-bottom: 1px solid #e1e8ed;
}

.breadcrumb.white-bg a {
    color: #2a5298;
}

.breadcrumb span {
    color: #666;
    margin: 0 0.5rem;
}

/* =================================================================
   MAIN CONTENT STYLES
   ================================================================= */

main {
    background: white;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.content-section {
    padding: 2rem;
}

h1 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 0.5rem;
}

h2 {
    color: #2a5298;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

h3 {
    color: #1e3c72;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

/* =================================================================
   HERO SECTION STYLES (Index & Finder's Fee pages)
   ================================================================= */

.hero {
    background: linear-gradient(1deg, #5c8cc6 0%, #5875f7 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border: none;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1.0;
}

.trusted-since {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 1.0;
}

.hero-section {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.reward-amount {
    font-size: 4rem;
    font-weight: 800;
    color: #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 1rem 0;
}

/* Value Propositions */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.value-prop {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.value-prop h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: white;
}

/* =================================================================
   FEATURE GRID STYLES
   ================================================================= */

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

.feature-card {
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 2rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #2a5298;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.feature-details {
    background: #e7f3ff;
    border-left: 4px solid #2a5298;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

/* =================================================================
   CTA SECTION STYLES
   ================================================================= */

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 3rem 0;
    border-radius: 8px;
}

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

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
    margin: 0 1rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* =================================================================
   BLOG STYLES
   ================================================================= */

/* Blog Index Page */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1rem;
    border: none;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: #f8f9fa;
    border-radius: 8px;
}

.category-btn {
    background: white;
    color: #1e3c72;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover, .category-btn.active {
    background: #1e3c72;
    color: white;
    border-color: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

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

.article-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    height: fit-content;
}

.article-card:hover {
    border-color: #2a5298;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.article-card.hidden {
    display: none;
}

.article-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.article-card h3 a:hover {
    color: #2a5298;
}

.article-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.read-more:hover {
    color: #1e3c72;
    transform: translateX(5px);
}

/* Newsletter Signup */
.newsletter-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 12px;
    margin-top: 3rem;
}

.newsletter-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #45a049;
}

/* =================================================================
   BLOG ARTICLE STYLES
   ================================================================= */

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
    text-align: left;
    background: transparent;
}

.article-header.center {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-date {
    background: #e7f3ff;
    color: #0056b3;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.article-category {
    background: #5d8fe7;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-title {
    color: #1e3c72;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    border: none;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #2a5298;
}

.article-content h2.style2 {
    color: #2a5298;
    font-size: 1.6rem;
    border-bottom: 2px solid #e7f3ff;
}

.article-content h3 {
    color: #2a5298;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}

.article-content h3.style2 {
    color: #1e3c72;
    font-size: 1.3rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-content ul, .article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.article-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2a5298;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.article-content strong {
    color: #1e3c72;
}

/* Access Path Styling */
.access-path {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #495057;
    margin: 0.5rem 0;
    display: inline-block;
}

/* Navigation Steps */
.nav-steps {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

/* =================================================================
   SPECIAL BOXES
   ================================================================= */

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box.simple {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-left: 4px solid #0056b3;
}

.highlight-box h4, .highlight-box .box-title {
    color: #0056b3;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.tip-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-left: 5px solid #9c27b0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.tip-box.simple {
    background: #f0f8f0;
    border: 1px solid #c3e6c3;
    border-left: 4px solid #28a745;
}

.tip-box h4, .tip-box .box-title {
    color: #155724;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-left: 5px solid #4caf50;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.feature-box.simple {
    background: linear-gradient(135deg, #f8f4ff 0%, #f0f0ff 100%);
    border: 1px solid #d4d4ff;
    border-left: 4px solid #6c5ce7;
}

.feature-box h4, .feature-box .box-title {
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.warning-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.warning-box.simple {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-left: 4px solid #ff9800;
}

.warning-box h4, .warning-box .box-title {
    color: #e65100;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Process and Contact Boxes */
.process-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.contact-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-left: 5px solid #9c27b0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.terms-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
}

/* Security Boxes */
.security-critical {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #f44336;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.security-critical h4 {
    color: #c62828;
    margin-bottom: 0.5rem;
}

.security-warning {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.security-warning h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

/* Specialized Boxes */
.announcement-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border: 1px solid #90caf9;
    border-left: 4px solid #2196f3;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.announcement-box h4 {
    color: #1565c0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-box {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.problem-box.alt {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #f44336;
}

.problem-box h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.problem-box.alt h4 {
    color: #c62828;
}

.solution-box {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.solution-box h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

/* AI and Special Feature Boxes */
.ai-box {
    background: linear-gradient(135deg, #f8f4ff 0%, #f0f0ff 100%);
    border: 1px solid #d4d4ff;
    border-left: 4px solid #6c5ce7;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.ai-box h4 {
    color: #6c5ce7;
    margin-bottom: 0.5rem;
}

.trust-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.trust-box h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reality-check {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.reality-check.alt {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    border-left: 4px solid #ffc107;
}

.reality-check h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.reality-check.alt h4 {
    color: #f57c00;
}

/* Password Example */
.password-example {
    background: #f3e5f5;
    border: 1px solid #ce93d8;
    border-left: 4px solid #9c27b0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.password-example h4 {
    color: #7b1fa2;
    margin-bottom: 0.5rem;
}

.password-demo {
    background: #4a148c;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    text-align: center;
    margin: 1rem 0;
    letter-spacing: 1px;
}

/* Best Practices */
.best-practices {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.best-practices.alt {
    background: #f0f8f0;
    border: 1px solid #c3e6c3;
    border-left: 4px solid #28a745;
}

.best-practices h4 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.best-practices.alt h4 {
    color: #155724;
}

/* Fiduciary Responsibility */
.fiduciary-box {
    background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
    border: 1px solid #ffecb3;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.fiduciary-box h4 {
    color: #f57c00;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Commitment and Welcome Boxes */
.commitment-box {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.commitment-box h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.welcome-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-left: 4px solid #28a745;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    text-align: center;
}

.welcome-box h4 {
    color: #155724;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* =================================================================
   SPECIALIZED COMPONENTS
   ================================================================= */

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

.step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.step:hover {
    border-color: #2a5298;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    background: #2a5298;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.step h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

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

.benefit {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.benefit h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Numbered Steps */
.numbered-steps {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.numbered-steps li {
    counter-increment: step-counter;
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    position: relative;
    padding-left: 4rem;
}

.numbered-steps li::before {
    content: counter(step-counter);
    background: #2a5298;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 1rem;
    top: 1.5rem;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.steps-list li {
    counter-increment: step-counter;
    background: #f8f9fa;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 6px;
    border-left: 4px solid #2a5298;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    background: #2a5298;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 1rem;
}

/* =================================================================
   DOWNLOADS PAGE STYLES
   ================================================================= */

.downloads-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.download-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2a5298;
}

.version-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    background: #e7f3ff;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #b3d9ff;
}

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

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
}

.download-btn.secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.trial-info {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.trial-info h4 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.requirements {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #28a745;
}

.requirements h3 {
    color: #155724;
    margin-bottom: 1rem;
}

.requirements-box {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.requirements-box h4 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #ffc107;
}

/* =================================================================
   CONTACT PAGE STYLES
   ================================================================= */

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

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a5298;
    margin: 0.5rem 0;
}

.contact-card a {
    color: #2a5298;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Business Hours */
.hours-section {
    background: linear-gradient(135deg, #e7f3ff 0%, #f0f8ff 100%);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #b3d9ff;
}

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

.hours-item {
    text-align: center;
}

.hours-item h4 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.form-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 0 2px rgba(42, 82, 152, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.4);
}

/* Location Section */
.location-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* FAQ Section */
.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #155724;
    margin-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    background: #1e3c72;
    color: white;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 8px;
}

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

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: #bbdefb;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

/* =================================================================
   SPECIALIZED BOXES CONTINUED
   ================================================================= */

/* Diagnostic and Tutorial Boxes */
.diagnostic-box {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.diagnostic-box h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.diagnostic-questions {
    background: #f3e5f5;
    border: 1px solid #ce93d8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    border-left: 4px solid #9c27b0;
}

.diagnostic-questions h4 {
    color: #7b1fa2;
    margin-bottom: 1rem;
}

.diagnostic-questions ol {
    font-weight: 500;
    color: #4a148c;
}

.troubleshooting-box {
    background: #fff8e1;
    border: 1px solid #ffcc02;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.troubleshooting-box h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.tutorial-step {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.tutorial-step h4 {
    color: #f57c00;
    margin-bottom: 0.5rem;
}

.tutorial-step ol {
    margin: 1rem 0;
}

.tutorial-step ol li {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

/* Step and Process Boxes */
.step-box {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.step-box h4 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.process-steps {
    background: #f3e5f5;
    border: 1px solid #ce93d8;
    border-left: 4px solid #9c27b0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.process-steps h4 {
    color: #7b1fa2;
    margin-bottom: 0.5rem;
}

.prerequisites-box {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-left: 4px solid #ff9800;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.prerequisites-box h4 {
    color: #e65100;
    margin-bottom: 0.5rem;
}

.results-box {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.results-box h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.applications-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 100%);
    border: 1px solid #b3d9ff;
    border-left: 4px solid #0056b3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.applications-box h4 {
    color: #0056b3;
    margin-bottom: 0.5rem;
}

/* Conflict and Resolution Boxes */
.conflict-box {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #f44336;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.conflict-box h4 {
    color: #c62828;
    margin-bottom: 0.5rem;
}

.symptoms-box {
    background: #fce4ec;
    border: 1px solid #f8bbd9;
    border-left: 4px solid #e91e63;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.symptoms-box h4 {
    color: #ad1457;
    margin-bottom: 0.5rem;
}

.resolution-box {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.resolution-box h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.prevention-box {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.prevention-box h4 {
    color: #1565c0;
    margin-bottom: 0.5rem;
}

.balance-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e8eaf6 100%);
    border: 1px solid #d1c4e9;
    border-left: 4px solid #673ab7;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.balance-box h4 {
    color: #4527a0;
    margin-bottom: 0.5rem;
}

/* Special Lists and Components */
.warning-signs {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #f44336;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.warning-signs h4 {
    color: #c62828;
    margin-bottom: 0.5rem;
}

.network-rule {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.network-rule h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.schedule-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e8eaf6 100%);
    border: 1px solid #d1c4e9;
    border-left: 4px solid #673ab7;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.schedule-box h4 {
    color: #4527a0;
    margin-bottom: 0.5rem;
}

/* DO/DON'T Lists */
.do-dont-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.do-list {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.do-list h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.dont-list {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-left: 4px solid #f44336;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.dont-list h4 {
    color: #c62828;
    margin-bottom: 1rem;
}

/* Checklist */
.checklist {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.checklist h4 {
    color: #495057;
    margin-bottom: 1rem;
}

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

.checklist li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Example Box */
.example-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-left: 4px solid #6c757d;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.example-box h4 {
    color: #495057;
    margin-bottom: 0.5rem;
}

/* =================================================================
      RESOURCES SECTION (Support Page Specific)
   ================================================================= */
.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
        
.resource-link {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}
        
.resource-link:hover {
    background: #f8f9fa;
    border-color: #2a5298;
    transform: translateY(-2px);
}
        
.resource-link h5 {
    color: #2a5298;
    margin-bottom: 0.5rem;
}


/* =================================================================
   ARTICLE NAVIGATION
   ================================================================= */

.article-nav {
    background: #f8f9fa;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-link {
    display: inline-block;
    background: #2a5298;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #1e3c72;
    transform: translateY(-2px);
}

.nav-link.back {
    background: #2375bd;
}

.nav-link.back:hover {
    background: #495057;
}

/* Related Articles */
.related-articles {
    background: #f8f9fa;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
}

.related-articles h3 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.related-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #2a5298;
    transition: all 0.3s ease;
}

.related-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.related-item a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 500;
}

.related-item a:hover {
    text-decoration: underline;
}

.related-item .date {
    font-size: 0.8rem;
    color: #666;
}

/* =================================================================
   FOOTER STYLES
   ================================================================= */

footer {
    background: #a0aefb;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer.simple {
    background: #343a40;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #12203b;
}

.footer-section a {
    color: #04296e;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #2a5298;
    padding-top: 1rem;
    opacity: 0.8;
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1, .hero-title {
        font-size: 2rem;
    }
    
    .reward-amount {
        font-size: 3rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .article-container {
        padding: 2rem 1rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .features-grid, .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        grid-template-columns: 1fr;
    }
    
    .contact-grid, .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-filter {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .related-list {
        grid-template-columns: 1fr;
    }
    
    .do-dont-grid {
        grid-template-columns: 1fr;
    }
    
    .numbered-steps li {
        padding-left: 1rem;
    }
    
    .numbered-steps li::before {
        position: relative;
        margin-bottom: 1rem;
        left: 0;
        top: 0;
    }
    
    .cta-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .reward-amount {
        font-size: 2.5rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .content-section, .article-content {
        padding: 1.5rem;
    }
    
    .article-card {
        padding: 1.5rem;
    }
}