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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header and Navigation */
header {
    background-color: #1a237e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem;
}

nav li {
    margin: 0 0.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: block;
}

nav a:hover, nav a.active {
    background-color: #3949ab;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.breadcrumb {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Content Sections */
.content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.content h2 {
    color: #1a237e;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content h3 {
    color: #3949ab;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.content h4 {
    color: #5c6bc0;
    margin: 1.5rem 0 0.5rem;
}

.content p {
    margin-bottom: 1rem;
    color: #555;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.stat h3 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #1a237e;
}

tr:hover {
    background-color: #f9f9f9;
}

/* Lists */
ul.findings, ul.characteristics, ul.praise-list, ul.feedback-highlights {
    list-style: none;
    margin: 1rem 0;
}

ul.findings li, ul.characteristics li, ul.praise-list li, ul.feedback-highlights li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

ul.findings li:before, ul.characteristics li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* CTA Sections */
.cta-section {
    background-color: #f5f7ff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    background-color: #1a237e;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #3949ab;
}

/* Cards and Grids */
.industry-grid, .rating-cards, .review-categories, .services-grid, .advantages, .challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-card, .rating-card, .review-category, .service-item, .advantage-item, .challenge-card {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Ratings */
.rating-display {
    font-size: 2rem;
    color: #1a237e;
    font-weight: bold;
    margin: 0.5rem 0;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Testimonials */
.testimonials {
    margin: 2rem 0;
}

.testimonial-card {
    background-color: #f5f7ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a237e;
    margin-bottom: 1.5rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    margin-bottom: 0.5rem;
}

.testimonial-card cite {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.9rem;
}

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

.contact-card {
    padding: 1.5rem;
    background-color: #f5f7ff;
    border-radius: 8px;
}

/* Highlight Boxes */
.highlight-box, .recommendation-box, .balance-note {
    background-color: #fff9c4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fbc02d;
    margin: 2rem 0;
}

/* Growth Stats */
.growth-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #1a237e;
}

/* Implementation Phases */
.phase-detail {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Checklist */
.checklist-items {
    list-style: none;
    margin: 1rem 0;
}

.checklist-items li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Next Page Navigation */
.next-page {
    text-align: right;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.next-button {
    display: inline-block;
    background-color: #3949ab;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.next-button:hover {
    background-color: #1a237e;
}

/* Footer */
footer {
    background-color: #1a237e;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 0.25rem 0;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem;
    }
    
    .key-stats, .industry-grid, .rating-cards {
        grid-template-columns: 1fr;
    }
}

/* Special Elements */
.metric {
    font-size: 1.5rem;
    color: #1a237e;
    font-weight: bold;
    margin-top: 0.5rem;
}

.benefit-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

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

/* ROI Comparison */
.comparison-chart {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
}

.traditional, .ai-enhanced {
    text-align: center;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    flex: 1;
    margin: 0 1rem;
}

.ai-enhanced {
    background-color: #e8f5e9;
    border: 2px solid #4caf50;
}

.roi-metric {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a237e;
    margin: 1rem 0;
}

.ai-enhanced .roi-metric {
    color: #2e7d32;
}

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

.benefit {
    text-align: center;
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: 8px;
}