* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

.slide {
    min-height: 100vh;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #e8f5e9 100%);
    opacity: 0.3;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1565c0;
}

h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1976d2;
}

p,
li {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #424242;
}

.title-slide {
    text-align: center;
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    color: #ffffff;
}

.title-slide h2,
.title-slide p,
.title-slide .tagline {
    color: #ffffff !important;
}

.logo {
    font-size: 5em;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.tagline {
    font-size: 2em;
    color: #e3f2fd;
    margin-bottom: 40px;
}

.highlight-box {
    background: #f5f5f5;
    border: 2px solid #e3f2fd;
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #1976d2;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: #ffffff;
    border: 2px solid #e3f2fd;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-card:hover {
    transform: scale(1.05);
    border-color: #1976d2;
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15);
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: #616161;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #ffffff;
    border: 2px solid #e8f5e9;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    background: #fafafa;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #4caf50;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInLeft 0.8s ease forwards;
}

.timeline-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(even) {
    animation-delay: 0.4s;
}

.timeline-date {
    font-size: 1.5em;
    font-weight: 600;
    color: #1976d2;
    min-width: 150px;
}

.timeline-content {
    background: #f8f8f8;
    border-left: 3px solid #1976d2;
    padding: 20px;
    margin-left: 30px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.market-map {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    border: 2px solid #e3f2fd;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.revenue-model {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.revenue-stream {
    background: #ffffff;
    border: 2px solid #c8e6c9;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.revenue-stream:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.15);
    border-color: #4caf50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e3f2fd;
}

.team-member:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-slide {
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    text-align: center;
    color: #ffffff;
}

.cta-slide h1,
.cta-slide h2,
.cta-slide h3,
.cta-slide p,
.cta-slide li {
    color: #ffffff !important;
}

.cta-slide .highlight-box {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1976d2;
    padding: 20px 60px;
    font-size: 1.3em;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f5f5f5;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.metric-highlight {
    color: #2e7d32;
    font-weight: 700;
}

.warning-highlight {
    color: #f57c00;
    font-weight: 600;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1976d2;
}

.financial-table {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    overflow-x: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid #e3f2fd;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background: #e3f2fd;
    font-weight: 600;
    color: #1565c0;
}

tr:hover {
    background: #f5f5f5;
}

.slide-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #9e9e9e;
    font-size: 0.9em;
}