/* Shared styles for all project pages */
.project-container {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.project-container h1.project-title {
    color: #1976d2 !important;
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
    font-weight: bold !important;
    text-align: center !important;
    font-family: Arial, sans-serif !important;
}
.project-image {
    width: 60%;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: block;
    max-width: 800px;
}
.project-text {
    color: black;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 20px 0;
} 