.projects {
    padding: 20px 0;
}

.projects h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-card {
    background: var(--bg-black);
    color: var(--text-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition);
}

.project-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.project-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.project-info {
    flex-grow: 1;
}

.project-info h3 {
    color: var(--bg-yellow);
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.project-info p {
    font-weight: 700;
    opacity: 0.9;
}

.project-details {
    padding: 0 25px 25px 105px;
    display: none;
}

.project-details p {
    margin-bottom: 10px;
}

.project-details a {
    color: var(--bg-yellow);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--bg-yellow);
}

.project-card.active .project-details {
    display: block;
}

.project-card.active .toggle-icon {
    transform: rotate(180deg);
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--bg-yellow);
    transition: var(--transition);
}

@media (max-width: 768px) {
    .project-header {
        flex-direction: column;
        text-align: center;
    }
    .project-details {
        padding: 20px;
    }
}
