body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    background: #f5f7fa;
}

.startup-section {
    padding: 10px 20px;
    text-align: center;
}

.startup-section h1 {
    color: #222;
    margin-bottom: 10px;
}

.subtitle {
    color: #555;
    margin-bottom: 40px;
}

* {
    box-sizing: border-box;
}

.startup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* exactly 2 per row */
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.startup-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    position: relative;
}

.startup-card img {
    width: 300px;
    height: 200px;
    object-fit: contain;   /* no distortion */
    margin-bottom: 5px;
}

.startup-card h3 {
    margin: 10px 0 5px;
    color: #111;
}

.domain {
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 8px;
}

.desc {
    font-size: 18px;
    color: #555;
}

.team {
    font-size: 14px;
}

.team ul {
    padding-left: 18px;
    margin: 5px 0 0;
}

.team li {
    list-style-type: disc;
    color: #333;
}
.status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    color: #fff;
}

.ongoing {
    background: #28a745;
}

.graduated {
    background: #6c757d;
}
