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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #16a34a;
    --accent-color: #0284c7;
    --danger-color: #dc2626;
    --warning-color: #f59e0b;
    --success-color: #10b981;
    --light-bg: #f8fafc;
    --dark-text: #1e293b;
    --light-text: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #253d54 0%, #2f4d68 100%);
    color: white;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-text {
    display: flex;
    flex-direction: column;
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.nav-brand .tagline {
    font-size: 12px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: #15a34a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Main Content */
main {
    padding: 60px 20px;
}

.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 15px;
}

.section > p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 800px;
}

/* Phases Grid */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.phase-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.phase-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.phase-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.phase-card p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.phase-card ul {
    list-style: none;
    padding-left: 0;
}

.phase-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.phase-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Key Insights */
.key-insights {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.key-insights h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.key-insights ul {
    list-style: none;
    padding-left: 0;
}

.key-insights li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark-text);
}

.key-insights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

/* Risk Matrix Table */
.risk-matrix {
    margin-bottom: 40px;
}

.risk-matrix h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: var(--primary-color);
    color: white;
}

table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
    background-color: var(--light-bg);
}

.priority-critical {
    background-color: #fee2e2;
    color: var(--danger-color);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

.priority-high {
    background-color: #fef3c7;
    color: var(--warning-color);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

/* BCP Components */
.bcp-components {
    margin-bottom: 40px;
}

.bcp-components h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

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

.component {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.component:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.component h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.component p {
    color: var(--light-text);
    font-size: 14px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
}

.timeline-marker {
    background-color: var(--secondary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--light-text);
}

/* Maturity Levels */
.maturity-levels {
    margin-bottom: 40px;
}

.maturity-levels h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.level-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.level-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.level-1 {
    border-left: 4px solid #fbbf24;
}

.level-2 {
    border-left: 4px solid #60a5fa;
}

.level-3 {
    border-left: 4px solid var(--secondary-color);
}

.level-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 20px;
}

.level-card > p:first-of-type {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.level-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.level-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.level-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.investment {
    background-color: var(--light-bg);
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Industry Strategies */
.industry-strategies {
    margin-bottom: 40px;
}

.industry-strategies h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.industry-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.industry-card h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.industry-card p {
    margin-bottom: 10px;
}

.industry-card strong {
    color: var(--primary-color);
}

.industry-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.industry-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--light-text);
}

.industry-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Scenarios */
.scenario-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.scenario-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.scenario-card > p {
    color: var(--light-text);
    margin-bottom: 15px;
}

.scenario-timeline p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.scenario-timeline ul {
    list-style: none;
    padding-left: 0;
}

.scenario-timeline li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--light-text);
}

.scenario-timeline li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.download-section h2 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.download-section p {
    color: rgba(255, 255, 255, 0.95);
}

.download-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.download-button:hover {
    background-color: #15a34a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.download-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.file-info {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #253d54 0%, #2f4d68 100%);
    color: white;
    padding: 60px 20px 40px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer a {
    color: #86efac;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section h2 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-button,
    .download-button {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}
