/* Biotech Section */
.biotech-section {
    background-color: #1c1c1c;
    padding: 0px 16px;
    color: #fff;
}

.biotech-container {
    max-width: 1400px;
    margin: 0 auto;
    border: 3px solid;
    border-radius: 25px;
    border-color: #603394;
}

.biotech-header {
    background: linear-gradient(120deg, #6a3bc2 0%, #e94e1b 100%);
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 60px;
    text-align: left;
    border-radius: 25px 25px 0 0;
    padding: 25px;
}

.biotech-icon svg {
    width: 80px;
    height: 80px;
}

.biotech-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
}

.biotech-title .highlight {
    color: #fff;
    font-weight: 900;
}

.biotech-title p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    max-width: 600px;
}

.biotech-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.biotech-factors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex: 1;
}

.factor-card {
    text-align: center;
    color: #fff;
}

.factor-icon {
    margin-bottom: 16px;
}

.factor-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.machine-learning-section {
    flex: 1;
    padding: 32px;
}

.ml-header {
    text-align: center;
    margin-bottom: 32px;
}

.ml-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid #713cb8;
}

.ml-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ml-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ml-item {
    font-size: 0.9rem;
    color: #e0e0e0;
    text-align: center;
    padding: 8px 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.border-right {
    border-right: 2px solid;
    border-color: #7d3ea9;
}



@media (max-width: 1024px) {
    .biotech-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .ml-categories {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .biotech-factors {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .biotech-title h2 {
        font-size: 2.2rem;
    }

    .biotech-content {
        display: grid;
        gap: 60px;
        align-items: flex-start;
    }

    .border-right {
        border-right: 0px solid;
    }
}