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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #3E3E3E;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Brand Colors */
:root {
    --bluebin-blue: #0971CE;
    --dark-blue: #3057A3;
    --yellow-accent: #EAB94D;
    --light-blue: #A0B7D5;
    --slate-gray: #B3B5B8;
    --text-black: #3E3E3E;
    --neutral-black: #222222;
    --white: #FFFFFF;
    --shadow: 0px 10px 30px 0 rgba(22, 101, 171, 0.30);
}

/* Logo Container */
.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

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

/* Main Content */
.main-content {
    margin-top: 0;
    min-height: 100vh;
    position: relative;
}

/* Slides */
.slide {
    display: none;
    padding: 20px;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.slide.active {
    display: flex;
}

.slide-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 30px;
    max-width: 1000px;
    width: 100%;
    position: relative;
}

/* Slide Header */
.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--bluebin-blue);
    margin: 0;
    position: relative;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--yellow-accent);
    border-radius: 2px;
}

.slide-number {
    font-size: 16px;
    color: var(--slate-gray);
    font-weight: 400;
}

/* Content */
.slide-content {
    margin-top: 10px;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-black);
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--bluebin-blue);
    border-radius: 50%;
}


/* Phase Cards */
.phase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.phase-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.phase-number {
    font-size: 12px;
    font-weight: 500;
    color: var(--bluebin-blue);
}

.timeline-pill {
    background: var(--yellow-accent);
    color: var(--neutral-black);
    padding: 3px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
}

.phase-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bluebin-blue);
    margin-bottom: 12px;
}

.phase-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.phase-bullets li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-black);
}

.phase-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: 3px;
    background: var(--text-black);
    border-radius: 50%;
}

.outcome {
    font-size: 12px;
    color: var(--bluebin-blue);
    line-height: 1.3;
}

/* Next Steps Cards */
.next-steps-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.next-steps-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bluebin-blue);
    margin-bottom: 12px;
}

.card-bullets {
    list-style: none;
    padding: 0;
}

.card-bullets li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-black);
}

.card-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--bluebin-blue);
    border-radius: 50%;
}



/* In-Slide Navigation */
.slide-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.nav-btn {
    background: var(--slate-gray);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.nav-btn:hover {
    background: var(--bluebin-blue);
    opacity: 1;
    transform: translateY(-1px);
}

.nav-btn:disabled {
    background: var(--slate-gray);
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        top: 15px;
        left: 15px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .slide {
        padding: 15px;
    }
    
    .slide-card {
        padding: 20px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .phase-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .next-steps-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    
    .slide-navigation {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .nav-btn {
        padding: 6px 16px;
        font-size: 11px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .slide-card {
        padding: 15px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .bullet-list li {
        font-size: 14px;
    }
}
