#projectSection {
    min-height: 100vh;
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 2rem 2rem 2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 1rem;
}

.main-heading {
    color: antiquewhite;
    padding: 1rem;
    font-size: 5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    padding: 1rem;
    width: 100%;
}

.project {
    background: #111;
    border-radius: 20px;
    padding: 1.5rem 1rem 0rem 2rem;
    height: 150px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

/* Hover effects */
.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: #666;
    background: #1a1a1a;
}

.project:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
}

/* Text styles */
.project h2 {
    color: antiquewhite;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.project p {
    color: #888;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    #projectSection {
        padding: 1rem 1rem 1rem 1rem;
    }

    .grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .project {
        padding: 1.25rem;
    }
    
    .project h2 {
        font-size: 1.25rem;
    }
}