.project-section {
    position: relative;
    padding: 60px 80px;
    min-height: 500px;
    color: #D4A76A;
    font-family: "Inknut Antiqua", serif;
}

/* Left Side */
.project-title h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Inknut Antiqua", serif;
}

.project-title h1 {
    font-size: 72px;
    font-weight: 700;
    margin: 0;
    font-family: "Inknut Antiqua", serif;
}

/* Right Side */
.project-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-links li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.project-links li::before {
    content: url("https://static.igem.wiki/teams/5972/uploads/header-subpage/projectsubyellow.svg");
    display: inline-block;
    margin-right: 0px;
    vertical-align: middle;
}

.project-links a {
    position: relative;
    font-size: 20px;
    text-decoration: none;
    color: #FEEFC5;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.project-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #FEEFC5;
    transition: width 0.3s ease;
}

.project-links a:hover::after {
    width: 100%;
}

.project-links a:hover {
    color: #FEEFC5;
}