/* Professional, modern look for project sections */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6fb;
    margin: 0;
    color: #222;
}
header {
    background: #2d3e50;
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}
section.project-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.08);
    margin-bottom: 2rem;
    padding: 2rem;
}
.project {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.project.reverse {
    flex-direction: row-reverse;
}
.project-image {
    flex: 0 0 220px;
    max-width: 220px;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}
.project-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
    background: #fff; 
}
.project-text {
    flex: 1;
    min-width: 220px;
}
.project-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.project-description {
    font-size: 1rem;
    line-height: 1.6;
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #2d3e50;
    color: #fff;
    margin-top: 2rem;
    font-size: 0.95rem;
    border-radius: 0 0 0 0;
}
@media (max-width: 700px) {
    .project {
        flex-direction: column !important;
        gap: 1rem;
    }
    main {
        padding: 0 0.5rem;
    }
    section.project-section {
        padding: 1rem;
    }
}
