* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* Sections */
.highlights, .about {
    padding: 60px 20px;
    text-align: center;
}

.highlights h1,
.about h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Container */
.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Link reset */
.project-link {
    text-decoration: none;
    color: inherit;
}

/* Card */
.project-card {
    width: 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image */
.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Content */
.project-content {
    padding: 15px;
    text-align: left;
}

.project-content h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

/* Divider */
hr {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 10px 0;
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tags span {
    background: #333;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Team badge */
.team-size {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}