/* pastProjects.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

h1 {
    text-align: left;
}

section {
    width: 100%;
    margin: 10px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #333;
    font-size: 18px;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 5px 0;
}

.project-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-row {
    width: 50%;
    display: flex;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.project-row a {
    width: 50%;
    flex-shrink: 0;
}

.project-row img {
    width: 100%;
    height: 50%;
    object-fit: cover;
}

.project-info h4 {
    font-size: 24px;
    margin-top: 0;
}

.project-info {
    padding: 25px;
}

.project-info p {
    font-size: 15px;
    line-height: 1.6;
}