.project-container {
    margin: 40px auto;
    padding: 0 20px;
}

.project-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.project-header {
    max-width: 1130px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.project-thumbnail {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
    background-color: #f1ebe4;
    padding: 20px;
    border-radius: 30px;
}

.project-thumbnail img {
    width: 450px;
    height: 300px;
}

.related-entity {
    background-color: #f1ebe4;
    padding: 20px;
    border-radius: 15px;
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    clear: both;
}

.related-entity h3 {
    margin-top: 0;
}

.back-button {
    background-color: #f1ebe4;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    gap: 8px;
}

.back-button:hover {
    background-color: #0056b3;
}

article {
    max-width: 650px;
    margin: 0;
}

section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 40px 40px 40px;
}

aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
}

.goals-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-item {
    display: flex;
    flex-direction: column;
    flex: 0 1 350px;
    align-items: center;
    justify-content: center;
    background: #28282812;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    gap: 10px;
    padding: 15px;
}

.goal-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 10px;
    filter: brightness(0) invert(1);
}

.goal-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    text-align: center;
}

.goal-item h3 a {
    text-decoration: none;
    color: white;
}

.goal-content {
    margin-top: 15px;
}