* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000777 0%, #000555 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 122, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--accent, #ff7a00);
    text-decoration: none;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero .subtitle {
    color: var(--accent, #ff7a00);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent, #ff7a00);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent, #ff7a00);
    color: white;
}

.btn-primary:hover {
    background: #e66d00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header .subtitle {
    color: var(--accent, #ff7a00);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000777;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* Healthcare Challenges */
.healthcare-challenges {
    background: #f8fafc;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ef4444;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.challenge-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #000777;
}

.challenge-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Solutions Grid */
.healthcare-solutions {
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000777, #000555);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000777, #000555);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000777;
}

.solution-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
}

.solution-features li::before {
    content: '✓';
    color: #000777;
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Compliance Section */
.compliance-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.compliance-content h3 {
    font-size: 2rem;
    color: #000777;
    margin-bottom: 1.5rem;
}

.compliance-content p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.compliance-standards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.compliance-badge {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.compliance-badge:hover {
    border-color: #000777;
    transform: translateY(-2px);
}

.compliance-badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.compliance-badge-text {
    font-weight: 600;
    color: #000777;
    font-size: 0.9rem;
}

.compliance-visual {
    position: relative;
}

.compliance-chart {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Integration Section */
.integration-section {
    background: white;
}

.integration-container {
    max-width: 1000px;
    margin: 0 auto;
}

.integration-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.integration-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    flex: 1;
    margin: 0 1rem;
    max-width: 250px;
    transition: all 0.3s ease;
}

.integration-step:hover {
    border-color: #000777;
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #000777, #000555);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000777;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: #64748b;
}

.integration-arrow {
    font-size: 2rem;
    color: #000777;
    margin: 0 1rem;
}

/* Case Studies */
.case-studies {
    background: #f8fafc;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.case-study-header {
    background: linear-gradient(135deg, #000777, #000555);
    color: white;
    padding: 2rem;
    text-align: center;
}

.case-study-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.case-study-type {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-study-size {
    font-size: 0.9rem;
    opacity: 0.9;
}

.case-study-content {
    padding: 2rem;
}

.case-study-challenge {
    margin-bottom: 1.5rem;
}

.case-study-label {
    font-weight: 600;
    color: #000777;
    margin-bottom: 0.5rem;
}

.case-study-text {
    color: #64748b;
    line-height: 1.6;
}

.case-study-results {
    background: #f0fdfa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #000777;
}

.result-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.result-metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000777;
}

.metric-label {
    font-size: 0.8rem;
    color: #64748b;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000777 0%, #000555 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #000777;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #000777;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 95px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .integration-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .integration-step {
        margin: 0;
        max-width: none;
    }

    .integration-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .challenges-grid,
    .solutions-grid,
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .compliance-standards {
        grid-template-columns: 1fr;
    }
}
